]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Change default values.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 19 Jan 2011 10:58:01 +0000 (11:58 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 19 Jan 2011 10:59:18 +0000 (11:59 +0100)
exit_on_close is now enabled by default, and no limits are given
for stopping the simulation.

options.cpp

index 89f8b18eb3287b5afd0d95ddf5c226b44de4d685..fd9da4eb8b05dd0b3d1d0f0246dac670ee3a1422 100644 (file)
@@ -53,11 +53,10 @@ namespace opt {
     double min_iter_duration = 1.0;
 
     // Parameters for the end of the simulation
-    // fixme: find better defaults
-    unsigned lb_maxiter = 10;
+    unsigned lb_maxiter = 0;
     unsigned comp_maxiter = 0;
     double time_limit = 0;
-    bool exit_on_close = false;
+    bool exit_on_close = true;
 
     // Named parameters lists
     loba_algorithms_type loba_algorithms;