Skip to content
Snippets Groups Projects
Commit 0ce8af77 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rename Tests/Fu/LibFit -> Mumufit

parent 966ff18e
No related branches found
No related tags found
1 merge request!1858const reference -> copy (hoping for elision); ASSERT -> throw; split Datafield c'tors; rename some test binaries
Showing
with 22 additions and 22 deletions
...@@ -5,5 +5,5 @@ ...@@ -5,5 +5,5 @@
include_directories(${CMAKE_SOURCE_DIR}/Tests/Functional/TestMachinery) include_directories(${CMAKE_SOURCE_DIR}/Tests/Functional/TestMachinery)
add_subdirectory(Consistence) add_subdirectory(Consistence)
add_subdirectory(LibFit) add_subdirectory(Mumufit)
add_subdirectory(Fitting) add_subdirectory(Fitting)
include(GoogleTest) # provides gtest_discover_tests include(GoogleTest) # provides gtest_discover_tests
set(test TestCoreConsistence) set(test FuTestConsistence)
file(GLOB source_files *.cpp) file(GLOB source_files *.cpp)
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
include(GoogleTest) # provides gtest_discover_tests include(GoogleTest) # provides gtest_discover_tests
set(test TestCoreFitting) set(test FuTestFitting)
file(GLOB source_files *.cpp) file(GLOB source_files *.cpp)
......
include(GoogleTest) # provides gtest_discover_tests include(GoogleTest) # provides gtest_discover_tests
set(test TestMinimizers) set(test FuTestMumufit)
file(GLOB source_files *.cpp) file(GLOB source_files *.cpp)
...@@ -9,4 +9,4 @@ target_include_directories(${test} ...@@ -9,4 +9,4 @@ target_include_directories(${test}
PUBLIC ${CMAKE_SOURCE_DIR}/3rdparty/common/gtest/gtest-1.8.0/include) PUBLIC ${CMAKE_SOURCE_DIR}/3rdparty/common/gtest/gtest-1.8.0/include)
target_link_libraries(${test} BornAgainFit gtest) target_link_libraries(${test} BornAgainFit gtest)
gtest_discover_tests(${test} DISCOVERY_TIMEOUT 300 TEST_PREFIX Functional.Fit.) gtest_discover_tests(${test} DISCOVERY_TIMEOUT 300 TEST_PREFIX Functional.Mumufit.)
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/ClassicalTestFunctions.cpp //! @file Tests/Functional/Mumufit/ClassicalTestFunctions.cpp
//! @brief Implements set of ObjectiveTestFunctions. //! @brief Implements set of ObjectiveTestFunctions.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Tests/Functional/LibFit/ClassicalTestFunctions.h" #include "Tests/Functional/Mumufit/ClassicalTestFunctions.h"
#include <cassert> #include <cassert>
#include <cmath> #include <cmath>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/ClassicalTestFunctions.h //! @file Tests/Functional/Mumufit/ClassicalTestFunctions.h
//! @brief Declares set of ObjectiveTestFunctions. //! @brief Declares set of ObjectiveTestFunctions.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/MinimizerTests.cpp //! @file Tests/Functional/Mumufit/MinimizerTests.cpp
//! @brief Implements classes from MinimizerTest family. //! @brief Implements classes from MinimizerTest family.
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
// ************************************************************************************************ // ************************************************************************************************
#include "Fit/Kernel/Minimizer.h" #include "Fit/Kernel/Minimizer.h"
#include "Tests/Functional/LibFit/PlanCases.h" #include "Tests/Functional/Mumufit/PlanCases.h"
#include "Tests/GTestWrapper/google_test.h" #include "Tests/GTestWrapper/google_test.h"
bool runMinimizerTest(const std::string& minimizer_name, const std::string& algorithm_name, bool runMinimizerTest(const std::string& minimizer_name, const std::string& algorithm_name,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/PlanCases.cpp //! @file Tests/Functional/Mumufit/PlanCases.cpp
//! @brief Defines collection of FunctionTestPlan classes //! @brief Defines collection of FunctionTestPlan classes
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Tests/Functional/LibFit/PlanCases.h" #include "Tests/Functional/Mumufit/PlanCases.h"
#include "Tests/Functional/LibFit/ClassicalTestFunctions.h" #include "Tests/Functional/Mumufit/ClassicalTestFunctions.h"
namespace { namespace {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/PlanCases.h //! @file Tests/Functional/Mumufit/PlanCases.h
//! @brief Defines collection of FunctionTestPlan classes //! @brief Defines collection of FunctionTestPlan classes
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#ifndef BORNAGAIN_TESTS_FUNCTIONAL_LIBFIT_PLANCASES_H #ifndef BORNAGAIN_TESTS_FUNCTIONAL_LIBFIT_PLANCASES_H
#define BORNAGAIN_TESTS_FUNCTIONAL_LIBFIT_PLANCASES_H #define BORNAGAIN_TESTS_FUNCTIONAL_LIBFIT_PLANCASES_H
#include "Tests/Functional/LibFit/ResidualTestPlan.h" #include "Tests/Functional/Mumufit/ResidualTestPlan.h"
#include "Tests/Functional/LibFit/ScalarTestPlan.h" #include "Tests/Functional/Mumufit/ScalarTestPlan.h"
//! Setting for standalone fit of Rosenbrock function. //! Setting for standalone fit of Rosenbrock function.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/ResidualTestPlan.cpp //! @file Tests/Functional/Mumufit/ResidualTestPlan.cpp
//! @brief Implements class ResidualTestPlan //! @brief Implements class ResidualTestPlan
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Tests/Functional/LibFit/ResidualTestPlan.h" #include "Tests/Functional/Mumufit/ResidualTestPlan.h"
#include "Fit/Kernel/Minimizer.h" #include "Fit/Kernel/Minimizer.h"
#include <cassert> #include <cassert>
#include <iostream> #include <iostream>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/ResidualTestPlan.h //! @file Tests/Functional/Mumufit/ResidualTestPlan.h
//! @brief Defines class ResidualTestPlan //! @brief Defines class ResidualTestPlan
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/ScalarTestPlan.cpp //! @file Tests/Functional/Mumufit/ScalarTestPlan.cpp
//! @brief Implements class ScalarTestPlan //! @brief Implements class ScalarTestPlan
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
// //
// ************************************************************************************************ // ************************************************************************************************
#include "Tests/Functional/LibFit/ScalarTestPlan.h" #include "Tests/Functional/Mumufit/ScalarTestPlan.h"
#include "Fit/Kernel/Minimizer.h" #include "Fit/Kernel/Minimizer.h"
#include <cmath> #include <cmath>
#include <iostream> #include <iostream>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// BornAgain: simulate and fit reflection and scattering // BornAgain: simulate and fit reflection and scattering
// //
//! @file Tests/Functional/LibFit/ScalarTestPlan.h //! @file Tests/Functional/Mumufit/ScalarTestPlan.h
//! @brief Defines class ScalarTestPlan //! @brief Defines class ScalarTestPlan
//! //!
//! @homepage http://www.bornagainproject.org //! @homepage http://www.bornagainproject.org
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment