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