Class GaussSeidelSolver

  • All Implemented Interfaces:
    IterativeLinearSystemSolver

    public class GaussSeidelSolver
    extends Object
    implements IterativeLinearSystemSolver
    Similar to the Jacobi method, the Gauss-Seidel method (GS) solves each equation in sequential order. However, in each iteration, GS uses the previously computed x components as soon as they are available. In general, GS converges faster than the Jacobi method does (if there is a convergence), though still slowly.

    This implementation does not support preconditioning.

    See Also:
    Wikipedia: Gauss-Seidel method