diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-03-15 09:11:40 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-03-15 09:11:40 +0300 |
| commit | b11123e1cd710c135d9924f263ab1808cd96c8c2 (patch) | |
| tree | 40796069da29046459459708117b8bdc96e0e4d7 /CMakeLists.txt | |
| parent | a5ca13e44165ee8a3420a57b95bcf84437a81dce (diff) | |
Add QR decomposition
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 87cd6a3..1d2374c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,6 +18,7 @@ add_library(linear_algebra src/norms.cpp src/triangular_solve.cpp src/lu.cpp + src/qr.cpp ) add_library(linear_algebra::core ALIAS linear_algebra) @@ -65,6 +66,9 @@ option(LINEAR_ALGEBRA_BUILD_EXPERIMENTS "Build experiment programs" ON) if(LINEAR_ALGEBRA_BUILD_EXPERIMENTS) add_executable(pivoting_vs_no_pivoting experiments/pivoting_vs_no_pivoting.cpp) target_link_libraries(pivoting_vs_no_pivoting PRIVATE linear_algebra::core) + + add_executable(hilbert_qr experiments/hilbert_qr.cpp) + target_link_libraries(hilbert_qr PRIVATE linear_algebra::core) endif() if(LINEAR_ALGEBRA_BUILD_TESTS) @@ -88,6 +92,7 @@ if(LINEAR_ALGEBRA_BUILD_TESTS) tests/test_matrix.cpp tests/test_triangular_solve.cpp tests/test_lu.cpp + tests/test_qr.cpp ) target_link_libraries(linear_algebra_tests |