Skip to content

Commit f19ad41

Browse files
Merge pull request #247 from ArnoStrouwen/patch-3
[skip ci] fix preconditioner documentation
2 parents 5a57da5 + d9f8117 commit f19ad41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/basics/Preconditioners.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ which is solved for ``y``, and then ``P_r u = y`` is solved for ``u``. The left
2222
preconditioner, ``P_l``, transforms the linear system into the form:
2323

2424
```math
25-
P_l^{-1}(Au - b) = 0
25+
P_l^{-1}Au = P_l^{-1}b
2626
```
2727

2828
A two-sided preconditioned system is of the form:
2929

3030
```math
31-
P_l A P_r^{-1} (P_r u) = P_l b
31+
P_l^{-1}A P_r^{-1} (P_r u) = P_l^{-1}b
3232
```
3333

3434
By default, if no preconditioner is given the preconditioner is assumed to be

0 commit comments

Comments
 (0)