Package dev.nm.misc.algorithm.iterative.tolerance
-
Interface Summary Interface Description Tolerance The tolerance criteria for an iterative algorithm to stop. -
Class Summary Class Description AbsoluteTolerance The stopping criteria is that the norm of the residual r is equal to or smaller than the specifiedtolerance
, that is, ||r||2 ≤ toleranceRelativeTolerance The stopping criteria is that the norm of the residual r relative to the inputbase
is equal to or smaller than the specifiedtolerance
, that is, ||r||2/base ≤ tolerance