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
Copy file name to clipboardExpand all lines: src/multilevel.jl
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -187,7 +187,13 @@ Keyword Arguments
187
187
* maxiter::Int64 - maximum number of iterations to execute
188
188
* verbose::Bool - display residual at each iteration
189
189
* log::Bool - return vector of residuals along with solution
190
+
* B::AbstractArray - the **near null space** in SA-AMG, which represents the low energy that cannot be attenuated by relaxtion, and thus needs to be perserved across the coarse grid.
190
191
192
+
!!! note
193
+
`B` can be:
194
+
- a `Vector` (e.g., for scalar PDEs),
195
+
- a `Matrix` (e.g., for vector PDEs or systems with multiple equations),
196
+
If `B` is not provided, it defaults to a vector of ones.
0 commit comments