From 1116ab2babd2ff5fecfe449d4b50d8f932476707 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Thu, 4 Jun 2020 07:41:08 -0400 Subject: [PATCH] rename computer.... folder to numerical methods --- CMakeLists.txt | 2 +- .../CMakeLists.txt | 2 +- .../bisection_method.cpp | 0 .../false_position.cpp | 0 .../gaussian_elimination.cpp | 0 .../newton_raphson_method.cpp | 0 .../ordinary_least_squares_regressor.cpp | 0 .../successive_approximation.cpp | 0 8 files changed, 2 insertions(+), 2 deletions(-) rename {computer_oriented_statistical_methods => numerical_methods}/CMakeLists.txt (91%) rename {computer_oriented_statistical_methods => numerical_methods}/bisection_method.cpp (100%) rename {computer_oriented_statistical_methods => numerical_methods}/false_position.cpp (100%) rename {computer_oriented_statistical_methods => numerical_methods}/gaussian_elimination.cpp (100%) rename {computer_oriented_statistical_methods => numerical_methods}/newton_raphson_method.cpp (100%) rename {computer_oriented_statistical_methods => numerical_methods}/ordinary_least_squares_regressor.cpp (100%) rename {computer_oriented_statistical_methods => numerical_methods}/successive_approximation.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index d304c776f..430be40d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,7 +70,7 @@ add_subdirectory(sorting) add_subdirectory(geometry) add_subdirectory(probability) add_subdirectory(machine_learning) -add_subdirectory(computer_oriented_statistical_methods) +add_subdirectory(numerical_methods) set(CPACK_PROJECT_NAME ${PROJECT_NAME}) set(CPACK_PROJECT_VERSION ${PROJECT_VERSION}) diff --git a/computer_oriented_statistical_methods/CMakeLists.txt b/numerical_methods/CMakeLists.txt similarity index 91% rename from computer_oriented_statistical_methods/CMakeLists.txt rename to numerical_methods/CMakeLists.txt index acff1ed1c..fc4c343de 100644 --- a/computer_oriented_statistical_methods/CMakeLists.txt +++ b/numerical_methods/CMakeLists.txt @@ -13,6 +13,6 @@ foreach( testsourcefile ${APP_SOURCES} ) if(OpenMP_CXX_FOUND) target_link_libraries(${testname} OpenMP::OpenMP_CXX) endif() - install(TARGETS ${testname} DESTINATION "bin/stats") + install(TARGETS ${testname} DESTINATION "bin/numerical_methods") endforeach( testsourcefile ${APP_SOURCES} ) diff --git a/computer_oriented_statistical_methods/bisection_method.cpp b/numerical_methods/bisection_method.cpp similarity index 100% rename from computer_oriented_statistical_methods/bisection_method.cpp rename to numerical_methods/bisection_method.cpp diff --git a/computer_oriented_statistical_methods/false_position.cpp b/numerical_methods/false_position.cpp similarity index 100% rename from computer_oriented_statistical_methods/false_position.cpp rename to numerical_methods/false_position.cpp diff --git a/computer_oriented_statistical_methods/gaussian_elimination.cpp b/numerical_methods/gaussian_elimination.cpp similarity index 100% rename from computer_oriented_statistical_methods/gaussian_elimination.cpp rename to numerical_methods/gaussian_elimination.cpp diff --git a/computer_oriented_statistical_methods/newton_raphson_method.cpp b/numerical_methods/newton_raphson_method.cpp similarity index 100% rename from computer_oriented_statistical_methods/newton_raphson_method.cpp rename to numerical_methods/newton_raphson_method.cpp diff --git a/computer_oriented_statistical_methods/ordinary_least_squares_regressor.cpp b/numerical_methods/ordinary_least_squares_regressor.cpp similarity index 100% rename from computer_oriented_statistical_methods/ordinary_least_squares_regressor.cpp rename to numerical_methods/ordinary_least_squares_regressor.cpp diff --git a/computer_oriented_statistical_methods/successive_approximation.cpp b/numerical_methods/successive_approximation.cpp similarity index 100% rename from computer_oriented_statistical_methods/successive_approximation.cpp rename to numerical_methods/successive_approximation.cpp