JuliaLinearAlgebra / AlgebraicMultigrid.jl

Algebraic Multigrid in Julia
Other
116 stars 23 forks source link

Add commonsolve interface #87

Closed ranjanan closed 2 years ago

ranjanan commented 2 years ago

The multigrid cycling can be called via:

A = poisson(100); 
b = rand(100);
solve(A, b, RugeStubenAMG(), maxiter = 1, abstol = 1e-6)

The old solve API has been moved to _solve