diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-03-14 14:49:46 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-03-14 14:49:46 +0300 |
| commit | 7db0d82731ababdf0b2f4d986dd54da3b4650954 (patch) | |
| tree | 145564ba45b9ae74a7eeebc319027c730c7177bc /include/linalg_error.hpp | |
| parent | 5ac9489c079f3f1a0ba1d2d8385001ada83a13b8 (diff) | |
Add triangular solve
Diffstat (limited to 'include/linalg_error.hpp')
| -rw-r--r-- | include/linalg_error.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linalg_error.hpp b/include/linalg_error.hpp index 8258899..25c48ad 100644 --- a/include/linalg_error.hpp +++ b/include/linalg_error.hpp @@ -16,4 +16,10 @@ public: : LinAlgError(message) {} }; +class SingularMatrixError : public LinAlgError { +public: + explicit SingularMatrixError(const std::string& message) + : LinAlgError(message) {} +}; + } // namespace linalg |