diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-04-27 07:24:41 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-04-27 07:24:41 +0300 |
| commit | 4602b36e9d5ea08656e3222846a1f161bbb1cec1 (patch) | |
| tree | 87618f154f7ebe91657ba1501d695d45a31e7881 /include/triangular_solve.hpp | |
| parent | b8bc28c70a6f2b0e7de81e85a796303d514df008 (diff) | |
Module refactor
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 |