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

Quick Search    Search Deep

Uses of Interface
org.maloi.evolvo.expressiontree.operators.OperatorInterface

Uses of OperatorInterface in org.maloi.evolvo.expressiontree.operators
 

Classes in org.maloi.evolvo.expressiontree.operators that implement OperatorInterface
 class Absolute
          Returns the absolute value of its parameter.
 class Addition
          Adds two expressionTrees together.
 class And
          Returns the bitwise and of two expressionTrees.
 class Arccos
          Returns the arccosine of an expressionTree.
 class Arcsin
          Returns the arcsin of an expressionTree.
 class Arctan
          Returns the arctangent of an expressionTree.
 class Atan2
          Returns atan(a/b)
 class Beta
           
 class Ceil
           
 class Cosine
          Returns the cosine of an expressionTree
 class Division
          Divides two expressionTrees.
 class Exponent
          Returns the exponent of the value of an expressionTree.
 class Floor
           
 class Ifs
          This is not really at all an implementation of an IFS fractal.
 class Invert
          1/x
 class Mandel
          An implementation of the mandelbrot set.
 class Maximum
          Returns the maximum value of two expressionTrees.
 class Minimum
          Returns the minimum value from two expressionTrees.
 class Multiplication
          Multiplication
 class Mux3
          3 Input Multiplexer
 class Mux5
          5 Input Multiplexer
 class Noise
          Returns the value of a point in a 3 dimensional noise field
 class Not
           
 class Or
           
 class Remainder
           
 class Rint
           
 class Sine
          Caluclates the sine of an expressionTree's value.
 class Subtraction
          Subtracts one expressionTrees from another.
 class WarpedNoise
          Returns the value of a point in a 3 dimensional noise field.
 class Xor
          Returns the exclusive-or function for two expressionTrees
 

Fields in org.maloi.evolvo.expressiontree.operators declared as OperatorInterface
(package private) static OperatorInterface[] OperatorList.list
           
 

Methods in org.maloi.evolvo.expressiontree.operators that return OperatorInterface
static OperatorInterface[] OperatorList.getOperators()
          Return the list of operators available.
static OperatorInterface OperatorList.byName(java.lang.String name)
          Return an operator by its name.