Example #1
0
 public FuzzySet Sum(FuzzySet sSet)
 {
     return(FuzzySolver.Summary(this, sSet));
 }
Example #2
0
 public FuzzySet Complement()
 {
     return(FuzzySolver.Complement(this));
 }
Example #3
0
 public FuzzySet Product(FuzzySet sSet)
 {
     return(FuzzySolver.Product(this, sSet));
 }