1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use ;
/// Holds the results of MUMPS error analysis ("stats")
///
/// See page 40 of MUMPS User's guide
///
/// MUMPS: computes the backward errors omega1 and omega2 (page 14):
///
/// ```text
/// |b - A · x_bar|ᵢ
/// omega1 = largest_scaled_residual_of ————————————————————
/// (|b| + |A| |x_bar|)ᵢ
///
/// |b - A · x_bar|ᵢ
/// omega2 = largest_scaled_residual_of ——————————————————————————————————
/// (|A| |x_approx|)ᵢ + ‖Aᵢ‖∞ ‖x_bar‖∞
///
/// where x_bar is the actual (approximate) solution returned by the linear solver
/// ```