diff options
Diffstat (limited to 'include/triangular_solve.hpp')
| -rw-r--r-- | include/triangular_solve.hpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/triangular_solve.hpp b/include/triangular_solve.hpp deleted file mode 100644 index 632f225..0000000 --- a/include/triangular_solve.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include <cstddef> - -#include "matrix.hpp" -#include "vector.hpp" - -namespace linalg { - -Vector forward_substitution( - const Matrix& lower, - const Vector& rhs, - double singular_tolerance = 1e-12, - bool unit_diagonal = false); - -Vector backward_substitution( - const Matrix& upper, - const Vector& rhs, - double singular_tolerance = 1e-12, - bool unit_diagonal = false); - -} // namespace linalg |