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