Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.maloi.evolvo.expressiontree.ExpressionTree

Uses of ExpressionTree in org.maloi.evolvo.expressiontree
 

Subclasses of ExpressionTree in org.maloi.evolvo.expressiontree
 class Value
          Terminal node for an expressionTree that stores a double value.
 class Variable
          Terminal node for expressionTree that stores a variable.
 

Fields in org.maloi.evolvo.expressiontree declared as ExpressionTree
(package private)  ExpressionTree[] ExpressionTree.params
          Holds parameters to this node's operator.
 

Methods in org.maloi.evolvo.expressiontree that return ExpressionTree
 ExpressionTree Variable.getClone()
           
 ExpressionTree[] Variable.getParams()
          Returns the parameters this node is holding.
 ExpressionTree Value.getClone()
           
 ExpressionTree[] Value.getParams()
          Returns the parameters this node is holding.
 ExpressionTree ExpressionTree.getClone()
          Convenience method to retrieve a clone of expressionTree as type expressionTree.
 ExpressionTree[] ExpressionTree.getParams()
          Returns the parameters this node is holding.
 

Methods in org.maloi.evolvo.expressiontree with parameters of type ExpressionTree
 void Variable.setParams(ExpressionTree[] dummy)
           
 void Value.setParams(ExpressionTree[] dummy)
           
 void ExpressionTree.setParams(ExpressionTree[] p)
          Set this node's parameters.
 

Constructors in org.maloi.evolvo.expressiontree with parameters of type ExpressionTree
ExpressionTree(ExpressionTree[] prms, org.maloi.evolvo.expressiontree.operators.OperatorInterface op)
          Creates a new expressionTree with operator op and parameters prms[]