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
* AMGCLWrap extension, remove pardiso from tests
* Deprecate AMGPreconditioner
* introduce RS, SA amg preconditioner from AlgebraicMultigrid
* Pass kwargs to their constructors
Create the [`AMGPreconditioner`](@ref) wrapping the Ruge-Stüben AMG preconditioner from [AlgebraicMultigrid.jl](https://github.com/JuliaLinearAlgebra/AlgebraicMultigrid.jl)
90
+
91
+
!!! warning
92
+
Deprecated in favor of [`RS_AMGPreconditioner`](@ref)
Create the [`RS_AMGPreconditioner`](@ref) wrapping the Ruge-Stüben AMG preconditioner from [AlgebraicMultigrid.jl](https://github.com/JuliaLinearAlgebra/AlgebraicMultigrid.jl)
108
+
For `kwargs` see there.
109
+
"""
110
+
function RS_AMGPreconditioner end
111
+
export RS_AMGPreconditioner
112
+
113
+
114
+
"""
115
+
```
116
+
SA_AMGPreconditioner(;kwargs...)
117
+
SA_AMGPreconditioner(matrix;kwargs...)
118
+
```
119
+
120
+
Create the [`SA_AMGPreconditioner`](@ref) wrapping the smoothed aggregation AMG preconditioner from [AlgebraicMultigrid.jl](https://github.com/JuliaLinearAlgebra/AlgebraicMultigrid.jl)
121
+
For `kwargs` see there.
122
+
"""
123
+
function SA_AMGPreconditioner end
124
+
export SA_AMGPreconditioner
125
+
126
+
127
+
128
+
129
+
"""
130
+
```
131
+
AMGCL_AMGPreconditioner(;kwargs...)
132
+
AMGCL_AMGPreconditioner(matrix;kwargs...)
133
+
```
134
+
135
+
Create the [`AMGCL_AMGPreconditioner`](@ref) wrapping AMG preconditioner from [AMGCLWrap.jl](https://github.com/j-fu/AMGCLWrap.jl)
136
+
For `kwargs` see there.
137
+
"""
138
+
function AMGCL_AMGPreconditioner end
139
+
export AMGCL_AMGPreconditioner
140
+
141
+
142
+
"""
143
+
```
144
+
AMGCL_RLXPreconditioner(;kwargs...)
145
+
AMGCL_RLXPreconditioner(matrix;kwargs...)
146
+
```
147
+
148
+
Create the [`AMGCL_RLXPreconditioner`](@ref) wrapping RLX preconditioner from [AMGCLWrap.jl](https://github.com/j-fu/AMGCLWrap.jl)
0 commit comments