X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9caf173e476622d309cc5653a83d224d05787cc7..d805d3e2b617db73c7c28cf4e4683cd9e6b928d4:/src/surf/storage_n11.cpp diff --git a/src/surf/storage_n11.cpp b/src/surf/storage_n11.cpp index 897c3b7ab6..f9e5c7a0ed 100644 --- a/src/surf/storage_n11.cpp +++ b/src/surf/storage_n11.cpp @@ -6,11 +6,9 @@ #include "storage_n11.hpp" #include "simgrid/kernel/routing/NetPoint.hpp" #include "simgrid/s4u/Engine.hpp" -#include "simgrid/s4u/Host.hpp" -#include "src/surf/xml/platf.hpp" #include "src/kernel/lmm/maxmin.hpp" -#include "xbt/utility.hpp" -#include /*ceil*/ +#include "src/surf/xml/platf.hpp" +#include "surf/surf.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_storage); @@ -106,12 +104,12 @@ StorageN11::StorageN11(StorageModel* model, std::string name, kernel::lmm::Syste StorageAction* StorageN11::read(sg_size_t size) { - return new StorageN11Action(model(), size, isOff(), this, READ); + return new StorageN11Action(get_model(), size, is_off(), this, READ); } StorageAction* StorageN11::write(sg_size_t size) { - return new StorageN11Action(model(), size, isOff(), this, WRITE); + return new StorageN11Action(get_model(), size, is_off(), this, WRITE); } /********** @@ -125,7 +123,7 @@ StorageN11Action::StorageN11Action(kernel::resource::Model* model, double cost, XBT_IN("(%s,%g", storage->get_cname(), cost); // Must be less than the max bandwidth for all actions - model->get_maxmin_system()->expand(storage->constraint(), get_variable(), 1.0); + model->get_maxmin_system()->expand(storage->get_constraint(), get_variable(), 1.0); switch(type) { case READ: model->get_maxmin_system()->expand(storage->constraintRead_, get_variable(), 1.0);