From 050ccc72c3c763eeffcb866948cdac15f485aa15 Mon Sep 17 00:00:00 2001 From: y-jan137 Date: Sun, 3 May 2026 17:33:09 +0300 Subject: Add cholesky solve --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') 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 -- cgit v1.2.3