Uses of Class
org.ojalgo.matrix.task.iterative.IterativeSolverTask
Packages that use IterativeSolverTask
-
Uses of IterativeSolverTask in org.ojalgo.matrix.task.iterative
Subclasses of IterativeSolverTask in org.ojalgo.matrix.task.iterativeModifier and TypeClassDescriptionfinal classConjugate Gradient solver for symmetric positive-definite systems [A][x]=[b].final classStationary Gauss–Seidel iteration for solving [A][x]=[b] with non-zero diagonal entries.final classStationary Jacobi iteration for solving [A][x]=[b] with non-zero diagonal entries.final classMinimal Residual (MINRES) solver for symmetric (possibly indefinite) square systems.final classExperimental parallelised stationary iteration based on Gauss–Seidel-style in-place updates.final classQuasi-Minimal Residual (QMR) solver for general nonsymmetric square systems.Fields in org.ojalgo.matrix.task.iterative declared as IterativeSolverTaskModifier and TypeFieldDescriptionprivate final IterativeSolverTaskMutableSolver.myDelegateprivate final IterativeSolverTaskIterativeSolverTask.Configurator.mySolverMethods in org.ojalgo.matrix.task.iterative that return IterativeSolverTaskModifier and TypeMethodDescriptionprotected final IterativeSolverTaskMutableSolver.getDelegate()Constructors in org.ojalgo.matrix.task.iterative with parameters of type IterativeSolverTaskModifierConstructorDescription(package private)Configurator(IterativeSolverTask solver) protectedMutableSolver(IterativeSolverTask delegate, int size) -
Uses of IterativeSolverTask in org.ojalgo.optimisation.convex
Fields in org.ojalgo.optimisation.convex with type parameters of type IterativeSolverTaskModifier and TypeFieldDescriptionprivate Supplier<IterativeSolverTask> ConvexSolver.Configuration.myIterativeSolverMethods in org.ojalgo.optimisation.convex that return IterativeSolverTaskModifier and TypeMethodDescriptionConvexSolver.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 IterativeSolverTaskModifier and TypeMethodDescriptionConvexSolver.Configuration.iterative(Supplier<IterativeSolverTask> solver, Supplier<Preconditioner> preconditioner) ConvexSolver.Configuration.iterative(Supplier<IterativeSolverTask> solver, Supplier<Preconditioner> preconditioner, NumberContext accuracy) ConvexSolver.Configuration.iterative(Supplier<IterativeSolverTask> solver, NumberContext accuracy) Select which iterative linear system solver to use for the Schur-complement step in IterativeASS.