Exemplo n.º 1
0
        public void addFuzzyRule(string ruleStr)
        {
            FuzzyRule rule = new FuzzyRule(ruleStr, this);

            Rules.Add(rule);
        }
Exemplo n.º 2
0
 public void addFuzzyRule(FuzzyRule fuzzyRule)
 {
     Rules.Add(fuzzyRule);
 }