Uses of Class
org.ojalgo.matrix.task.iterative.IterativeSolverTask
-
Packages that use IterativeSolverTask Package Description org.ojalgo.matrix.task.iterative org.ojalgo.optimisation.convex -
-
Uses of IterativeSolverTask in org.ojalgo.matrix.task.iterative
Subclasses of IterativeSolverTask in org.ojalgo.matrix.task.iterative Modifier and Type Class Description classConjugateGradientSolverConjugate Gradient solver for symmetric positive-definite systems [A][x]=[b].classGaussSeidelSolverStationary Gauss–Seidel iteration for solving [A][x]=[b] with non-zero diagonal entries.classJacobiSolverStationary Jacobi iteration for solving [A][x]=[b] with non-zero diagonal entries.classMINRESSolverMinimal Residual (MINRES) solver for symmetric (possibly indefinite) square systems.classParallelGaussSeidelSolverExperimental parallelised stationary iteration based on Gauss–Seidel-style in-place updates.classQMRSolverQuasi-Minimal Residual (QMR) solver for general nonsymmetric square systems.Fields in org.ojalgo.matrix.task.iterative declared as IterativeSolverTask Modifier and Type Field Description private IterativeSolverTaskMutableSolver. myDelegateprivate IterativeSolverTaskIterativeSolverTask.Configurator. mySolverMethods in org.ojalgo.matrix.task.iterative that return IterativeSolverTask Modifier and Type Method Description protected IterativeSolverTaskMutableSolver. getDelegate()Constructors in org.ojalgo.matrix.task.iterative with parameters of type IterativeSolverTask Constructor Description Configurator(IterativeSolverTask solver)MutableSolver(IterativeSolverTask delegate, int size) -
Uses of IterativeSolverTask in org.ojalgo.optimisation.convex
Fields in org.ojalgo.optimisation.convex with type parameters of type IterativeSolverTask Modifier and Type Field Description private java.util.function.Supplier<IterativeSolverTask>ConvexSolver.Configuration. myIterativeSolverMethods in org.ojalgo.optimisation.convex that return IterativeSolverTask Modifier and Type Method Description IterativeSolverTaskConvexSolver.Configuration. newIterativeSolver(int maxIterations)Returns a new iterative solver instance configured with the current accuracy, maximum iterations, and preconditioner settings.Method parameters in org.ojalgo.optimisation.convex with type arguments of type IterativeSolverTask Modifier and Type Method Description ConvexSolver.ConfigurationConvexSolver.Configuration. iterative(java.util.function.Supplier<IterativeSolverTask> solver, java.util.function.Supplier<Preconditioner> preconditioner)ConvexSolver.ConfigurationConvexSolver.Configuration. iterative(java.util.function.Supplier<IterativeSolverTask> solver, java.util.function.Supplier<Preconditioner> preconditioner, NumberContext accuracy)ConvexSolver.ConfigurationConvexSolver.Configuration. iterative(java.util.function.Supplier<IterativeSolverTask> solver, NumberContext accuracy)Select which iterative linear system solver to use for the Schur-complement step in IterativeASS.
-