File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ preconditioners which works with the wrapped packages.
10
10
11
11
### Mathematical Definition
12
12
13
- Preconditioners are specified in the keyword arguments of ` init ` or ` solve ` . The
14
- right preconditioner, ` Pr ` transforms the linear system `` Au = b `` into the
15
- form:
13
+ Preconditioners are specified in the keyword arguments to ` init ` or ` solve ` : ` Pl ` for left
14
+ and ` Pr ` for right preconditioner, respectively.
15
+ The right preconditioner, `` P_r `` transforms the linear system `` Au = b `` into the form:
16
16
17
17
``` math
18
- AP_r^{-1}(Pu ) = AP_r^{-1}y = b
18
+ AP_r^{-1}(P_r u ) = AP_r^{-1}y = b
19
19
```
20
20
21
- to add the solving step `` P_r u = y `` . The left preconditioner, ` Pl ` , transforms
22
- the linear system into the form:
21
+ which is solved for `` y `` , and then `` P_r u = y `` is solved for `` u `` . The left
22
+ preconditioner, `` P_l `` , transforms the linear system into the form:
23
23
24
24
``` math
25
25
P_l^{-1}(Au - b) = 0
You can’t perform that action at this time.
0 commit comments