X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9c29ce9448ff34d1885138e45fec6f5361e5d684..d3c605045fe8c525f32393a054425d72edf47b18:/src/simgrid/sg_config.cpp diff --git a/src/simgrid/sg_config.cpp b/src/simgrid/sg_config.cpp index 88e5e7c257..6c6dfec814 100644 --- a/src/simgrid/sg_config.cpp +++ b/src/simgrid/sg_config.cpp @@ -1,11 +1,11 @@ -/* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ /* sg_config: configuration infrastructure for the simulation world */ -#include "simgrid/sg_config.h" +#include "simgrid/sg_config.hpp" #include "instr/instr_interface.h" #include "mc/mc.h" #include "simgrid/instr.h" @@ -360,11 +360,11 @@ void sg_config_init(int *argc, char **argv) xbt_cfg_register_boolean("cpu/maxmin-selective-update", "no", nullptr, "Update the constraint set propagating " "recursively to others constraints (off by " - "default when optim is set to lazy)"); + "default unless optim is set to lazy)"); xbt_cfg_register_alias("cpu/maxmin-selective-update", "cpu/maxmin_selective_update"); xbt_cfg_register_boolean("network/maxmin-selective-update", "no", nullptr, "Update the constraint set propagating " "recursively to others constraints (off " - "by default when optim is set to lazy)"); + "by default unless optim is set to lazy)"); xbt_cfg_register_alias("network/maxmin-selective-update", "network/maxmin_selective_update"); /* Replay (this part is enabled even if MC it disabled) */ xbt_cfg_register_string("model-check/replay", nullptr, _sg_cfg_cb_model_check_replay, @@ -500,7 +500,7 @@ void sg_config_init(int *argc, char **argv) const char* default_privatization = std::getenv("SMPI_PRIVATIZATION"); if (default_privatization == nullptr) - default_privatization = "dlopen"; + default_privatization = "no"; xbt_cfg_register_string("smpi/privatization", default_privatization, nullptr, "How we should privatize global variable at runtime (no, yes, mmap, dlopen).");