Example #1
0
 public ActiveFuzzySet(double truthDegree, FuzzySet parent)
 {
     this._TruthDegree = truthDegree;
     this._linkOnTerm  = parent;
 }
Example #2
0
 public Conclusion(string variable, FuzzySet term, double weight)
 {
     this.Variable = new Variable(variable);
     this.Term     = term;
     this._Weight  = weight;
 }
 public SugenoConclusion(string variable, FuzzySet term, double weightAR, double AR, double weightDR, double DR)
 {
     this.Variable = new Variable(variable);
     this.Term     = term;
     this.Val      = weightAR * AR - weightDR * DR;
 }
Example #4
0
 public Conclusion(string variable, FuzzySet term)
 {
     this.Variable = new Variable(variable);
     this.Term     = term;
 }