Class SymmetricSuccessiveOverrelaxationSolver

  • All Implemented Interfaces:
    IterativeLinearSystemSolver

    public class SymmetricSuccessiveOverrelaxationSolver
    extends Object
    implements IterativeLinearSystemSolver
    The Symmetric Successive Overrelaxation method (SSOR) is like SOR, but it performs in each iteration one forward sweep followed by one backward sweep. With an optimal value of ω, the convergence rate of SSOR is usually slower than that of SOR with an optimal ω.

    This implementation does not support preconditioning.

    See Also:
    Wikipedia: Successive over-relaxation method