Uses of Class
no.uib.cipr.matrix.sparse.IterativeSolverNotConvergedException

Packages that use IterativeSolverNotConvergedException
no.uib.cipr.matrix.sparse Unstructured sparse matrices and vectors with iterative solvers and preconditioners. 
 

Uses of IterativeSolverNotConvergedException in no.uib.cipr.matrix.sparse
 

Methods in no.uib.cipr.matrix.sparse that throw IterativeSolverNotConvergedException
 boolean AbstractIterationMonitor.converged(double r)
           
 boolean IterationMonitor.converged(double r)
          Checks for convergence
 boolean AbstractIterationMonitor.converged(double r, Vector x)
           
 boolean IterationMonitor.converged(double r, Vector x)
          Checks for convergence
 boolean AbstractIterationMonitor.converged(Vector r)
           
 boolean IterationMonitor.converged(Vector r)
          Checks for convergence
 boolean AbstractIterationMonitor.converged(Vector r, Vector x)
           
 boolean IterationMonitor.converged(Vector r, Vector x)
          Checks for convergence
protected abstract  boolean AbstractIterationMonitor.convergedI(double r)
           
protected  boolean DefaultIterationMonitor.convergedI(double r)
           
protected abstract  boolean AbstractIterationMonitor.convergedI(double r, Vector x)
           
protected  boolean DefaultIterationMonitor.convergedI(double r, Vector x)
           
protected  boolean MatrixIterationMonitor.convergedI(double r, Vector x)
           
 Vector BiCG.solve(Matrix A, Vector b, Vector x)
           
 Vector BiCGstab.solve(Matrix A, Vector b, Vector x)
           
 Vector CG.solve(Matrix A, Vector b, Vector x)
           
 Vector CGS.solve(Matrix A, Vector b, Vector x)
           
 Vector Chebyshev.solve(Matrix A, Vector b, Vector x)
           
 Vector GMRES.solve(Matrix A, Vector b, Vector x)
           
 Vector IR.solve(Matrix A, Vector b, Vector x)
           
 Vector IterativeSolver.solve(Matrix A, Vector b, Vector x)
          Solves the given problem, writing result into the vector.
 Vector QMR.solve(Matrix A, Vector b, Vector x)