Uses of Interface
org.ojalgo.matrix.task.iterative.Preconditioner
-
Packages that use Preconditioner Package Description org.ojalgo.matrix.task.iterative org.ojalgo.optimisation.convex -
-
Uses of Preconditioner in org.ojalgo.matrix.task.iterative
Classes in org.ojalgo.matrix.task.iterative that implement Preconditioner Modifier and Type Class Description (package private) classIdentityPreconditionerIdentity (no-op) preconditioner.classJacobiPreconditionerSimple diagonal (Jacobi) preconditioner: M = diag(A), apply M^{-1} x = x ./ diag(A).classSSORPreconditionerSymmetric Successive Over-Relaxation (SSOR) preconditioner with relaxation factor omega (ω).Fields in org.ojalgo.matrix.task.iterative declared as Preconditioner Modifier and Type Field Description static PreconditionerPreconditioner. IDENTITYA no-op preconditioner.private PreconditionerIterativeSolverTask. myPreconditionerMethods in org.ojalgo.matrix.task.iterative that return Preconditioner Modifier and Type Method Description protected PreconditionerIterativeSolverTask. getPreconditioner()static PreconditionerPreconditioner. newIdentity()An identity (no-op) preconditioner.static PreconditionerPreconditioner. newJacobi()A Jacobi (diagonal) preconditioner.static PreconditionerPreconditioner. newSSOR(double omega)A Symmetric Successive Over-Relaxation (SSOR) preconditioner with a specified relaxation factorstatic PreconditionerPreconditioner. newSymmetricGaussSeidel()A symmetric Gauss-Seidel preconditioner (SSOR with omega=1).Methods in org.ojalgo.matrix.task.iterative that return types with arguments of type Preconditioner Modifier and Type Method Description static java.util.function.Supplier<Preconditioner>Preconditioner. getSSOR(double omega)Returns a factory method for a Symmetric Successive Over-Relaxation (SSOR) preconditioner with the specified relaxation factor.Methods in org.ojalgo.matrix.task.iterative with parameters of type Preconditioner Modifier and Type Method Description IterativeSolverTask.ConfiguratorIterativeSolverTask.Configurator. preconditioner(Preconditioner preconditioner)Preconditioner for methods that support it.protected voidIterativeSolverTask. setPreconditioner(Preconditioner preconditioner) -
Uses of Preconditioner in org.ojalgo.optimisation.convex
Fields in org.ojalgo.optimisation.convex with type parameters of type Preconditioner Modifier and Type Field Description private java.util.function.Supplier<Preconditioner>ConvexSolver.Configuration. myIterativePreconditioner
-