Procs
proc conjugate_gradient(A: SparseMatrix; b: DynamicVector): DynamicVector {...}{. raises: [], tags: [].}
- Compute solution of Ax = b using the conjugate gradient method. Source Edit
proc incomplete_lu(A: SparseMatrix): SparseMatrix {...}{.raises: [], tags: [].}
- Compute the incomplete LU factorization of A. Source Edit
proc preconditioned_cg(A: SparseMatrix; C: SparseMatrix; b: DynamicVector): DynamicVector {...}{. raises: [], tags: [].}
- Compute the solution of Ax = b using a preconditioned conjugate gradient method. Supply a precondioner via C. Source Edit