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: docs/src/preconditioning.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
Many iterative solvers have the option to provide left and right preconditioners (`Pl` and `Pr` resp.) in order to speed up convergence or prevent stagnation. They transform a problem $Ax = b$ into a better conditioned system $(P_l^{-1}AP_r^{-1})y = P_l^{-1}b$, where $x = P_r^{-1}y$.
4
4
5
-
These preconditioners should support the operations
5
+
These preconditioners should support the operations
6
6
7
-
-`A_ldiv_B!(y, P, x)` computes `P \ x` in-place of `y`;
8
-
-`A_ldiv_B!(P, x)` computes `P \ x` in-place of `x`;
7
+
-`ldiv!(y, P, x)` computes `P \ x` in-place of `y`;
8
+
-`ldiv!(P, x)` computes `P \ x` in-place of `x`;
9
9
- and `P \ x`.
10
10
11
-
If no preconditioners are passed to the solver, the method will default to
11
+
If no preconditioners are passed to the solver, the method will default to
0 commit comments