From 4602b36e9d5ea08656e3222846a1f161bbb1cec1 Mon Sep 17 00:00:00 2001 From: y-jan137 Date: Mon, 27 Apr 2026 07:24:41 +0300 Subject: Module refactor --- include/triangular_solve.hpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 include/triangular_solve.hpp (limited to 'include/triangular_solve.hpp') 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 - -#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 -- cgit v1.2.3