Class JacobiSolver

  • All Implemented Interfaces:
    IterativeLinearSystemSolver

    public class JacobiSolver
    extends Object
    implements IterativeLinearSystemSolver
    The Jacobi method solves sequentially n equations in a linear system Ax = b in isolation in each iteration. For the i-th equation, it solves for the value xi while assuming the other x's remain fixed. The convergence is slow.

    This implementation does not support preconditioning.

    See Also:
    Wikipedia: Jacobi method