aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authory-jan137 <yousefjan24000@gmail.com>2026-05-03 17:33:09 +0300
committery-jan137 <yousefjan24000@gmail.com>2026-05-03 17:33:09 +0300
commit050ccc72c3c763eeffcb866948cdac15f485aa15 (patch)
tree2199e2b41d4bbd78083fd1773cc4d6ecc4c59bc9 /CMakeLists.txt
parent4602b36e9d5ea08656e3222846a1f161bbb1cec1 (diff)
Add cholesky solve
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
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