You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
since AlgebraicMultigrid v0.4.1 the code breaks in the following snipped:
using IterativeSolvers
using Preconditioners
using AlgebraicMultigrid
A = poisson(1000)
b = A*ones(1000)
p = AMGPreconditioner{SmoothedAggregation}(A)
cg(A,b,Pl=p)
However, the raw preconditioner can still be used from AlgebraicMultigrid package:
p = aspreconditioner(smoothed_aggregation(A))
The text was updated successfully, but these errors were encountered:
Hi,
since
AlgebraicMultigrid
v0.4.1 the code breaks in the following snipped:However, the raw preconditioner can still be used from
AlgebraicMultigrid
package:The text was updated successfully, but these errors were encountered: