Package org.ejml.equation
Class Sequence
- java.lang.Object
-
- org.ejml.equation.Sequence
-
public class Sequence extends java.lang.ObjectContains a sequence of operations. This is the final result of compiling the equation. Once created it can be invoked an arbitrary number of times by invokingperform().
-
-
Constructor Summary
Constructors Constructor Description Sequence()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddOperation(Operation operation)voidperform()Executes the sequence of operations
-
-
-
Method Detail
-
addOperation
public void addOperation(Operation operation)
-
perform
public void perform()
Executes the sequence of operations
-
-