HYPRE.jl
Documentation for HYPRE.jl
HYPRE.solve! — Functionsolve!(solver::HYPRESolver, x::HYPREVector, A::HYPREMatrix, b::HYPREVector)Solve the linear system A x = b using solver with x as the initial guess. The approximate solution is stored in x.
See also solve.
HYPRE.solve — Functionsolve(solver::HYPRESolver, A::HYPREMatrix, b::HYPREVector) -> HYPREVectorSolve the linear system A x = b using solver and return the approximate solution.
This method allocates an initial guess/output vector x, initialized to 0.
See also solve!.
HYPRE.HYPRESolver — TypeHYPRESolverAbstract super type of all the wrapped HYPRE solvers.