Package org.ojalgo.matrix.task.iterative
-
Interface Summary Interface Description IterativeSolverTask.SparseDelegate -
Class Summary Class Description ConjugateGradientSolver For solving [A][x]=[b] when [A] is symmetric and positive-definite.GaussSeidelSolver For solving [A][x]=[b] where [A] has non-zero elements on the diagonal.IterativeSolverTask For solving very large sparse equation systems – [A][x]=[b].IterativeSolverTask.Configurator JacobiSolver For solving [A][x]=[b] where [A] has non-zero elements on the diagonal.KrylovSubspaceSolver MutableSolver<D extends IterativeSolverTask & IterativeSolverTask.SparseDelegate> Maintains a list ofEquation
:s and delegates to aIterativeSolverTask.SparseDelegate
.ParallelGaussSeidelSolver Experimental parallelised version ofGaussSeidelSolver
.StationaryIterativeSolver