예제 #1
0
파일: Rule.cs 프로젝트: pablodearmas/Fuzzy
 public void Then(SimplePredicate p)
 {
     this.consecuent = p;
 }
예제 #2
0
파일: Rule.cs 프로젝트: pablodearmas/Fuzzy
 public Rule(Predicate antecedent, SimplePredicate consecuent)
 {
     this.antecedent = antecedent;
     this.consecuent = consecuent;
 }