From 81b49377edf2d5b08dca4b5ff3132499861244ea Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 8 Jan 2022 12:44:52 +0530 Subject: Bunch of unfinished experiments These experiments were in progress towards the end, and never properly finished. I leave the code here in case it turns out to be useful. --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index b4fae28..6701515 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,6 +75,12 @@ add_executable(integral integral.c) target_link_libraries(integral nsmc -lm) add_executable(spheroid spheroid.c) target_link_libraries(spheroid nsmc) +add_executable(centroid centroid.c) +target_link_libraries(centroid nsmc) +add_executable(whitening whitening.c) +target_link_libraries(whitening nsmc -lm) +add_executable(sample-on-ellipsoid sample-on-ellipsoid.c) +target_link_libraries(sample-on-ellipsoid nsmc -lm) # Build and install scheme wrapper. if(${GUILE_FOUND}) -- cgit v1.2.3