Example #1
0
 /// <param name="name">The name that identificates the linguistic variable.</param>
 /// <param name="type">The type of the linguistic variable.</param>
 /// <param name="membershipFunctionCollection">A membership functions collection for the lingusitic variable.</param>
 public LinguisticVariable(string name, string type, MembershipFunctionCollection membershipFunctionCollection)
 {
     this.Name      = name;
     this.Direction = direction;
     this.Type      = type;
     this.MembershipFunctionCollection = membershipFunctionCollection;
 }
Example #2
0
 /// <param name="name">The name that identificates the linguistic variable.</param>
 /// <param name="membershipFunctionCollection">A membership functions collection for the lingusitic variable.</param>
 public LinguisticVariable(string name, MembershipFunctionCollection membershipFunctionCollection)
 {
     this.Name = name;
     this.MembershipFunctionCollection = membershipFunctionCollection;
 }