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

Packages that use Variable
net.sourceforge.jFuzzyLogic.defuzzifier   
net.sourceforge.jFuzzyLogic.rule   
 

Uses of Variable in net.sourceforge.jFuzzyLogic.defuzzifier
 

Constructors in net.sourceforge.jFuzzyLogic.defuzzifier with parameters of type Variable
Defuzzifier(Variable variable)
          Constructor
DefuzzifierCenterOfArea(Variable variable)
           
DefuzzifierCenterOfGravity(Variable variable)
           
DefuzzifierCenterOfGravitySingletons(Variable variable)
           
DefuzzifierContinuous(Variable variable)
           
DefuzzifierDiscrete(Variable variable)
           
DefuzzifierLeftMostMax(Variable variable)
           
DefuzzifierMeanMax(Variable variable)
           
DefuzzifierRightMostMax(Variable variable)
           
 

Uses of Variable in net.sourceforge.jFuzzyLogic.rule
 

Fields in net.sourceforge.jFuzzyLogic.rule declared as Variable
(package private)  Variable FuzzyRuleTerm.variable
          Varible
 

Fields in net.sourceforge.jFuzzyLogic.rule with type parameters of type Variable
(package private)  java.util.LinkedList<Variable> FuzzyRuleSet.variables
          Every variable is listed here
 

Methods in net.sourceforge.jFuzzyLogic.rule that return Variable
 Variable Variable.add(LinguisticTerm linguisticTerm)
          Adds a termName to this variable
 Variable Variable.add(java.lang.String termName, MembershipFunction membershipFunction)
          Adds a termName to this variable
private  Variable FuzzyRuleSet.fclTreeDefuzzify(antlr.collections.AST tree)
          Parse a tree for "Defuzzify" item
private  Variable FuzzyRuleSet.fclTreeFuzzify(antlr.collections.AST tree)
          Parse a tree for "Fuzzify" item
 Variable FuzzyRuleTerm.getVariable()
           
 Variable FuzzyRuleSet.getVariable(java.lang.String variableName)
          Get Variable by name
 

Methods in net.sourceforge.jFuzzyLogic.rule that return types with arguments of type Variable
 java.util.LinkedList<Variable> FuzzyRuleSet.getVariables()
           
 

Methods in net.sourceforge.jFuzzyLogic.rule with parameters of type Variable
 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
private  LinguisticTerm FuzzyRuleSet.fclTreeFuzzifyTerm(antlr.collections.AST tree, Variable variable)
          Parse a tree for "Term" item
 void FuzzyRuleTerm.setVariable(Variable variable)
           
 

Method parameters in net.sourceforge.jFuzzyLogic.rule with type arguments of type Variable
 void FuzzyRuleSet.setVariables(java.util.LinkedList<Variable> consequentVariables)
           
 

Constructors in net.sourceforge.jFuzzyLogic.rule with parameters of type Variable
FuzzyRuleTerm(Variable variable, java.lang.String term, boolean negated)
          Constructor