public class DefaultFloatIterationMonitor extends AbstractFloatIterationMonitor
Constructor and Description |
---|
DefaultFloatIterationMonitor()
Constructor for DefaultIterationMonitor.
|
DefaultFloatIterationMonitor(int maxIter,
float rtol,
float atol,
float dtol)
Constructor for DefaultIterationMonitor
|
Modifier and Type | Method and Description |
---|---|
float |
getAbsoluteTolerance()
Returns the absolute convergence tolerance
|
float |
getDivergenceTolerance()
Returns the relative divergence tolerance
|
int |
getMaxIterations()
Returns maximum number of iterations to permit
|
float |
getRelativeTolerance()
Returns the relative convergence tolerance
|
void |
setAbsoluteTolerance(float atol)
Sets the absolute convergence tolerance
|
void |
setDivergenceTolerance(float dtol)
Sets the relative divergence tolerance
|
void |
setMaxIterations(int maxIter)
Sets maximum number of iterations to permit
|
void |
setRelativeTolerance(float rtol)
Sets the relative convergence tolerance
|
converged, converged, converged, converged, getIterationReporter, getNormType, isFirst, iterations, next, residual, setFirst, setIterationReporter, setNormType
public DefaultFloatIterationMonitor(int maxIter, float rtol, float atol, float dtol)
maxIter
- Maximum number of iterationsrtol
- Relative convergence tolerance (to initial residual)atol
- Absolute convergence tolerancedtol
- Relative divergence tolerance (to initial residual)public DefaultFloatIterationMonitor()
public void setMaxIterations(int maxIter)
maxIter
- Maximum number of iterationspublic int getMaxIterations()
public void setRelativeTolerance(float rtol)
rtol
- relative convergence tolerance (to initial residual)public float getRelativeTolerance()
public void setAbsoluteTolerance(float atol)
atol
- absolute convergence tolerancepublic float getAbsoluteTolerance()
public void setDivergenceTolerance(float dtol)
dtol
- relative divergence tolerance (to initial residual)public float getDivergenceTolerance()
Jump to the Parallel Colt Homepage