Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
All this started with a simple namespace renaming
[simgrid.git] / src / kernel / lmm / lagrange.cpp
index 8c61de7..bb355c5 100644 (file)
@@ -7,7 +7,7 @@
  * Modeling the proportional fairness using the Lagrangian Optimization Approach. For a detailed description see:
  * "ssh://username@scm.gforge.inria.fr/svn/memo/people/pvelho/lagrange/ppf.ps".
  */
-#include "surf/maxmin.hpp"
+#include "src/kernel/lmm/maxmin.hpp"
 #include "xbt/log.h"
 #include "xbt/sysdep.h"
 
@@ -26,7 +26,8 @@ XBT_LOG_NEW_SUBCATEGORY(surf_lagrange_dichotomy, surf_lagrange, "Logging specifi
 #define RENO2_SCALING 1.0
 
 namespace simgrid {
-namespace surf {
+namespace kernel {
+namespace lmm {
 
 double (*func_f_def)(lmm_variable_t, double);
 double (*func_fp_def)(lmm_variable_t, double);
@@ -561,3 +562,4 @@ double func_reno2_fpi(lmm_variable_t var, double x)
 }
 }
 }
+}