Package com.singularsys.extensions.xjep
Class Subst
- java.lang.Object
-
- com.singularsys.jep.functions.PostfixMathCommand
-
- com.singularsys.extensions.xjep.Subst
-
- All Implemented Interfaces:
CommandVisitorI,JepComponent,PostfixMathCommandI,java.io.Serializable
public class Subst extends PostfixMathCommand implements CommandVisitorI, JepComponent
Jep functions which adds asubstitute(eqn,sub)preprocessing operator to perform symbolic substitution. For examplesubst(x*y*z,y=x+1,z=x-1)
Will return
x*(x+1.0)*(x-1.0).- See Also:
CommandVisitorI,SubstitutionVisitor, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected SubstitutionVisitorsubv-
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, name, NaN, numberOfParameters
-
-
Constructor Summary
Constructors Constructor Description Subst()Subst(XJep xjep)Subst(SubstitutionVisitor subv)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JepComponentgetLightWeightInstance()Gets a light-weight instance suitable for using in multiple threads.voidinit(Jep jep)Initialize the component.Nodeprocess(Node node, Node[] children)Performs the specified action on an expression tree.-
Methods inherited from class com.singularsys.jep.functions.PostfixMathCommand
asArray, asBool, asDouble, asInt, asLong, asStrictInt, asString, checkNumberOfParameters, getName, getNumberOfParameters, run, setCurNumberOfParameters, setName, toString, toString
-
-
-
-
Field Detail
-
subv
protected SubstitutionVisitor subv
-
-
Constructor Detail
-
Subst
public Subst(XJep xjep)
-
Subst
public Subst()
-
Subst
public Subst(SubstitutionVisitor subv)
-
-
Method Detail
-
process
public Node process(Node node, Node[] children) throws ParseException
Description copied from interface:CommandVisitorIPerforms the specified action on an expression tree.- Specified by:
processin interfaceCommandVisitorI- Parameters:
node- top node of the treechildren- the children of the node after they have been preprocessed.- Returns:
- top node of the results.
- Throws:
ParseException
-
init
public void init(Jep jep)
Description copied from interface:JepComponentInitialize the component. This methods is called whenever a component is added to Jep. Hence it allows components to keep track of the other components they may rely on.- Specified by:
initin interfaceJepComponent- Parameters:
jep- the current Jep instance
-
getLightWeightInstance
public JepComponent getLightWeightInstance()
Description copied from interface:JepComponentGets a light-weight instance suitable for using in multiple threads.- Specified by:
getLightWeightInstancein interfaceJepComponent- Returns:
- either an new instance, null or 'this'.
-
-