Skip to content
Snippets Groups Projects
Commit e79f5b8e authored by erwan's avatar erwan
Browse files

Fix: set the maximum simulation length to 10000 by default (100 is too small)

parent f0e1e1d4
No related branches found
No related tags found
No related merge requests found
(* Time-stamp: <modified the 15/03/2019 (at 22:37) by Erwan> *) (* Time-stamp: <modified the 28/03/2019 (at 10:40) by Erwan Jahier> *)
type t = { type t = {
...@@ -29,7 +29,7 @@ let (make_args : unit -> t) = ...@@ -29,7 +29,7 @@ let (make_args : unit -> t) =
fun () -> fun () ->
{ {
topo = ""; topo = "";
length = 100; length = 10000;
verbose = 0; verbose = 0;
demon = Demon.Distributed; demon = Demon.Distributed;
rif = false; rif = false;
......
# Time-stamp: <modified the 26/03/2019 (at 17:47) by Erwan Jahier> # Time-stamp: <modified the 28/03/2019 (at 10:33) by Erwan Jahier>
DIR=../../_build/install/default DIR=../../_build/install/default
sasa=$(DIR)/bin/sasa -seed 42 sasa=$(DIR)/bin/sasa -seed 42 -l 100
LIB=-I $(DIR)/lib/algo LIB=-I $(DIR)/lib/algo
# LIB=-I +algo # LIB=-I +algo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment