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.SolutionIterativeLinearSystemSolver. 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.SolutionGaussSeidelSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)IterativeLinearSystemSolver.SolutionJacobiSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)IterativeLinearSystemSolver.SolutionSuccessiveOverrelaxationSolver. solve(LSProblem problem, IterationMonitor<Vector> monitor)IterativeLinearSystemSolver.SolutionSymmetricSuccessiveOverrelaxationSolver. 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 classCountMonitor<S>ThisIterationMonitorcounts the number of iterates generated, hence the number of iterations.classIteratesMonitor<S>ThisIterationMonitorstores all states generated during iterations.classNullMonitor<S>ThisIterationMonitordoes nothing when a new iterate is added.classVectorMonitorThisIterationMonitorstores all vectors generated during iterations.
-