aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--data_sets/default_data_set.hpp (renamed from core/default_data_set.hpp)2
-rw-r--r--data_sets/sorted_data_set.hpp (renamed from core/sorted_data_set.hpp)2
-rw-r--r--interface/opt.cc2
-rw-r--r--utilities/opt_types.hpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/core/default_data_set.hpp b/data_sets/default_data_set.hpp
index 20992c4..887e3d2 100644
--- a/core/default_data_set.hpp
+++ b/data_sets/default_data_set.hpp
@@ -1,6 +1,6 @@
#ifndef DEFAULT_DATA_SET
#define DEFAULT_DATA_SET
-#include "fitter.hpp"
+#include "core/fitter.hpp"
#include <vector>
diff --git a/core/sorted_data_set.hpp b/data_sets/sorted_data_set.hpp
index f825b6c..f12edac 100644
--- a/core/sorted_data_set.hpp
+++ b/data_sets/sorted_data_set.hpp
@@ -1,6 +1,6 @@
#ifndef SORTED_DATA_SET
#define SORTED_DATA_SET
-#include "fitter.hpp"
+#include "core/fitter.hpp"
#include <vector>
#include <algorithm>
diff --git a/interface/opt.cc b/interface/opt.cc
index ce492d1..42dfcb3 100644
--- a/interface/opt.cc
+++ b/interface/opt.cc
@@ -3,7 +3,7 @@
#include <models/models.hpp>
#include <map>
#include <core/freeze_param.hpp>
-#include <core/default_data_set.hpp>
+#include <data_sets/default_data_set.hpp>
//#include <iostream>
using namespace std;
diff --git a/utilities/opt_types.hpp b/utilities/opt_types.hpp
index 46846cd..fd76169 100644
--- a/utilities/opt_types.hpp
+++ b/utilities/opt_types.hpp
@@ -2,7 +2,7 @@
#define OPT_TYPES_HPP
#include <core/optimizer.hpp>
#include <core/fitter.hpp>
-#include <core/default_data_set.hpp>
+#include <data_sets/default_data_set.hpp>
#include <methods/powell/powell_method.hpp>
#include <statistics/chisq.hpp>
#include <statistics/leastsq.hpp>