diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-03-15 11:16:49 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-03-15 11:16:49 +0300 |
| commit | be01607041d2ded41e5bf39a0a8e17ffb9bcc296 (patch) | |
| tree | 12857bb0c9c360fecc23534a1c4185d0b27972e5 /include/linalg_error.hpp | |
| parent | b11123e1cd710c135d9924f263ab1808cd96c8c2 (diff) | |
Add QR iteration and cleanup
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 25c48ad..ac9b456 100644 --- a/include/linalg_error.hpp +++ b/include/linalg_error.hpp @@ -22,4 +22,10 @@ public: : LinAlgError(message) {} }; +class NonConvergenceError : public LinAlgError { +public: + explicit NonConvergenceError(const std::string& message) + : LinAlgError(message) {} +}; + } // namespace linalg |