Uses of Class
net.sourceforge.jFuzzyLogic.rule.FuzzyRule

Packages that use FuzzyRule
net.sourceforge.jFuzzyLogic.rule   
 

Uses of FuzzyRule in net.sourceforge.jFuzzyLogic.rule
 

Fields in net.sourceforge.jFuzzyLogic.rule with type parameters of type FuzzyRule
(package private)  java.util.LinkedList<FuzzyRule> FuzzyRuleSet.rules
          A list of rules
 

Methods in net.sourceforge.jFuzzyLogic.rule that return FuzzyRule
 FuzzyRule FuzzyRule.addAntecedent(Variable variable, java.lang.String termName, boolean negated)
          Add a condition "...
 FuzzyRule FuzzyRule.addConsequent(Variable variable, java.lang.String termName, boolean negated)
          Add consequent "( variable is termName)" to this rule
 

Methods in net.sourceforge.jFuzzyLogic.rule with parameters of type FuzzyRule
 FuzzyRuleSet FuzzyRuleSet.add(FuzzyRule fuzzyRule)
          Add a rule to this ruleSet
private  void FuzzyRuleSet.fclTreeRuleBlockRuleThen(antlr.collections.AST tree, FuzzyRule fuzzyRule)
          Parse rule 'THEN' (or rule's weight)
private  void FuzzyRuleSet.fclTreeRuleBlockRuleWith(antlr.collections.AST tree, FuzzyRule fuzzyRule)
          Parse rule 'WITH' (or rule's weight)
 

Method parameters in net.sourceforge.jFuzzyLogic.rule with type arguments of type FuzzyRule
 void FuzzyRuleSet.setRules(java.util.LinkedList<FuzzyRule> rules)