Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more specific comments
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 24 Mar 2018 10:11:41 +0000 (11:11 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 24 Mar 2018 10:11:41 +0000 (11:11 +0100)
src/surf/StorageImpl.cpp
src/surf/ptask_L07.cpp

index a11e477..d0add12 100644 (file)
@@ -32,7 +32,7 @@ simgrid::xbt::signal<void(StorageAction*, kernel::resource::Action::State, kerne
 
 StorageModel::StorageModel() : Model()
 {
-  maxminSystem_ = new simgrid::kernel::lmm::System(true /* lazy update */);
+  maxminSystem_ = new simgrid::kernel::lmm::System(true /* selective update */);
 }
 
 StorageModel::~StorageModel()
index 3707a56..38ee2c6 100644 (file)
@@ -34,7 +34,7 @@ namespace simgrid {
 namespace surf {
 
 HostL07Model::HostL07Model() : HostModel() {
-  maxminSystem_            = new simgrid::kernel::lmm::System(true /* lazy */);
+  maxminSystem_            = new simgrid::kernel::lmm::System(true /* selective update */);
   maxminSystem_->solve_fun = &simgrid::kernel::lmm::bottleneck_solve;
   surf_network_model = new NetworkL07Model(this,maxminSystem_);
   surf_cpu_model_pm = new CpuL07Model(this,maxminSystem_);