Uses of Interface
dev.nm.misc.algorithm.iterative.monitor.IterationMonitor
-
-
Uses of IterationMonitor in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative that return IterationMonitor Modifier and Type Method Description IterationMonitor<Vector>
IterativeLinearSystemSolver.Solution. step()
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative with parameters of type IterationMonitor Modifier and Type Method Description IterativeLinearSystemSolver.Solution
IterativeLinearSystemSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)
Solves iteratively Ax = b until the solution converges, i.e., the norm of residual (b - Ax) is less than or equal to the threshold. -
Uses of IterationMonitor in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationary
-
Uses of IterationMonitor in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationary
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationary with parameters of type IterationMonitor Modifier and Type Method Description IterativeLinearSystemSolver.Solution
GaussSeidelSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)
IterativeLinearSystemSolver.Solution
JacobiSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)
IterativeLinearSystemSolver.Solution
SuccessiveOverrelaxationSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)
IterativeLinearSystemSolver.Solution
SymmetricSuccessiveOverrelaxationSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)
-
Uses of IterationMonitor in dev.nm.misc.algorithm.iterative.monitor
Classes in dev.nm.misc.algorithm.iterative.monitor that implement IterationMonitor Modifier and Type Class Description class
CountMonitor<S>
ThisIterationMonitor
counts the number of iterates generated, hence the number of iterations.class
IteratesMonitor<S>
ThisIterationMonitor
stores all states generated during iterations.class
NullMonitor<S>
ThisIterationMonitor
does nothing when a new iterate is added.class
VectorMonitor
ThisIterationMonitor
stores all vectors generated during iterations.
-