Parallel Colt 0.7.2

cern.colt.matrix.tfloat.algo.solver
Class IterativeSolverFloatNotConvergedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by cern.colt.matrix.tfloat.algo.solver.FloatNotConvergedException
              extended by cern.colt.matrix.tfloat.algo.solver.IterativeSolverFloatNotConvergedException
All Implemented Interfaces:
Serializable

public class IterativeSolverFloatNotConvergedException
extends FloatNotConvergedException

Exception for lack of convergence in a linear problem. Contains the final computed residual.

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class cern.colt.matrix.tfloat.algo.solver.FloatNotConvergedException
FloatNotConvergedException.Reason
 
Constructor Summary
IterativeSolverFloatNotConvergedException(FloatNotConvergedException.Reason reason, FloatIterationMonitor iter)
          Constructor for IterativeSolverNotConvergedException
IterativeSolverFloatNotConvergedException(FloatNotConvergedException.Reason reason, String message, FloatIterationMonitor iter)
          Constructor for IterativeSolverNotConvergedException
 
Method Summary
 int getIterations()
          Gets the number of iterations used when this exception was thrown
 float getResidual()
          Returns final computed residual
 
Methods inherited from class cern.colt.matrix.tfloat.algo.solver.FloatNotConvergedException
getReason
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IterativeSolverFloatNotConvergedException

public IterativeSolverFloatNotConvergedException(FloatNotConvergedException.Reason reason,
                                                 String message,
                                                 FloatIterationMonitor iter)
Constructor for IterativeSolverNotConvergedException

Parameters:
reason - Reason for this exception
message - A more detailed message
iter - Associated iteration monitor, for extracting residual and iteration number

IterativeSolverFloatNotConvergedException

public IterativeSolverFloatNotConvergedException(FloatNotConvergedException.Reason reason,
                                                 FloatIterationMonitor iter)
Constructor for IterativeSolverNotConvergedException

Parameters:
reason - Reason for this exception
iter - Associated iteration monitor, for extracting residual and iteration number
Method Detail

getResidual

public float getResidual()
Returns final computed residual


getIterations

public int getIterations()
Gets the number of iterations used when this exception was thrown


Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage