public class FixedPointFinderOutput
extends java.lang.Object
Constructor and Description |
---|
FixedPointFinderOutput(ExecutionInitializationOutput eiop)
FixedPointFinderOutput constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
containsRoot()
Indicate whether the root is present in the output, i.e., if the finder has successfully completed.
|
java.lang.String |
displayString()
Return a string form of the root finder output
|
ExecutionInitializationOutput |
getEIOP()
Retrieve the Execution Initialization Output
|
int |
getNumIterations()
Return The number of iterations taken
|
int |
getNumOFCalcs()
Retrieve the number of objective function calculations needed
|
int |
getNumOFDerivCalcs()
Retrieve the number of objective function derivative calculations needed
|
double |
getRoot()
Return the root
|
boolean |
incrIterations()
Increment the number of Iterations
|
boolean |
incrOFCalcs()
Increment the number of Objective Function evaluations
|
boolean |
incrOFDerivCalcs()
Increment the number of Objective Function Derivative evaluations
|
boolean |
setRoot(double dblRoot)
Set the Root
|
double |
time()
Return the time elapsed for the the full root finding operation
|
public FixedPointFinderOutput(ExecutionInitializationOutput eiop) throws java.lang.Exception
eiop
- Execution Initialization Output 1Djava.lang.Exception
- Thrown if inputs are invalidpublic boolean setRoot(double dblRoot)
dblRoot
- Rootpublic boolean containsRoot()
public double time()
public double getRoot()
public boolean incrIterations()
public int getNumIterations()
public boolean incrOFCalcs()
public int getNumOFCalcs()
public boolean incrOFDerivCalcs()
public int getNumOFDerivCalcs()
public ExecutionInitializationOutput getEIOP()
public java.lang.String displayString()