Functions | |
| def | test_anderson () |
| def | test_lbfgs () |
| def | test_broyden_good () |
Variables | |
| A = np.array([[20, -10], [-10, 30]], dtype=np.float64) | |
| b = np.array([10, 20], dtype=np.float64) | |
| n = A.shape[1] | |
| int | ε = 1e-15 |
| def test_solve_linear_system.test_anderson | ( | ) |
Definition at line 12 of file test_solve_linear_system.py.
Here is the call graph for this function:
Here is the caller graph for this function:| def test_solve_linear_system.test_lbfgs | ( | ) |
Definition at line 36 of file test_solve_linear_system.py.
Here is the call graph for this function:
Here is the caller graph for this function:| def test_solve_linear_system.test_broyden_good | ( | ) |
Definition at line 60 of file test_solve_linear_system.py.
Here is the call graph for this function:
Here is the caller graph for this function:| A = np.array([[20, -10], [-10, 30]], dtype=np.float64) |
Definition at line 5 of file test_solve_linear_system.py.
| b = np.array([10, 20], dtype=np.float64) |
Definition at line 6 of file test_solve_linear_system.py.
| n = A.shape[1] |
Definition at line 7 of file test_solve_linear_system.py.
| int ε = 1e-15 |
Definition at line 9 of file test_solve_linear_system.py.