diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-05-03 17:33:09 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-05-03 17:33:09 +0300 |
| commit | 050ccc72c3c763eeffcb866948cdac15f485aa15 (patch) | |
| tree | 2199e2b41d4bbd78083fd1773cc4d6ecc4c59bc9 /CMakeLists.txt | |
| parent | 4602b36e9d5ea08656e3222846a1f161bbb1cec1 (diff) | |
Add cholesky solve
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 37dcaf7..70f03a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,6 +36,7 @@ target_sources(linear_algebra src/lu.cpp src/qr.cpp src/qr_iteration.cpp + src/cholesky.cpp ) target_compile_features(linear_algebra PUBLIC cxx_std_23) @@ -90,6 +91,7 @@ if(LINEAR_ALGEBRA_BUILD_TESTS) tests/test_lu.cpp tests/test_qr.cpp tests/test_qr_iteration.cpp + tests/test_cholesky.cpp ) target_link_libraries(linear_algebra_tests |