- Jul 08, 2020
- Jul 07, 2020
- Jul 06, 2020
- Jul 01, 2020
-
-
erwan authored
nb: I needed to split Main to avoid a Module self-loop (as I need to use do_step in Daemon).
-
- Jun 23, 2020
-
- Mar 06, 2020
-
-
erwan authored
The rationale is that the Algo.spid that gave processes access to their pid via their neighbors was a bit weird. Also, it makes the anonymity of the algorithm more explicit: an access to the pid could appear anywhere in the program, while now, the pid must be in state.t! Now, if the user needs the pid, he must store it explicitly in the state via the initialization function.
-
- Mar 05, 2020
-
-
erwan authored
-
- Feb 19, 2020
-
- Feb 06, 2020
-
-
erwan authored
-
- Jan 22, 2020
-
- Oct 23, 2019
-
-
Karine Altisen authored
-
erwan authored
-
- Oct 17, 2019
-
-
erwan authored
-
- Oct 07, 2019
-
- Sep 30, 2019
-
-
erwan authored
-
- Sep 25, 2019
- Jul 03, 2019
- Jun 28, 2019
-
-
Gwennan Eliezer authored
Took into account Erwan's comments and changed Register module such that the properties are computed on first call (except height that is computed on each call because it depends on the chosen tree's root)
-
- Jun 26, 2019
-
-
Gwennan Eliezer authored
-
- Jun 21, 2019
- Jun 19, 2019
-
-
erwan authored
Basically, the idea is to parse the result of the registred ('s -> string) function. For instance if the user define 'v and 'v printer as follows: type state = { a : int ; b : float } let state_to_string s = Printf.sprintf "x=%d y=%f" s.v1 s.v2 pid_x and pid_y will be used as output var names in the RIF outputs. If the user provide no name: let state_to_string s = Printf.sprintf "%d %f" s.v1 s.v2 some names will be invented (pid_v0 and pid_v1)
-
erwan authored
All the get_* functions (that are of no interest for users) are now in the Register module.
-
erwan authored
Things that are currently broken: - the ability to init vars in the dot - controling the name of local vars in the rif output
-
- Jun 17, 2019
-
-
erwan authored
The idea is to use the Obj module (arg !!!), which is safe thanks to the fact that there is now only one register function, which forces all the 'v to be bound to the same type.
-
- Jun 14, 2019
-
- Jun 12, 2019
-
-
erwan authored
But I bumped into the "value restriction" limitation https://stackoverflow.com/questions/22507448/the-value-restriction Indeed, I need to store functions of 'v in some tables (or references), And tables are necessaryly weakly polymorphic ! https://v1.realworldocaml.org/v1/en/html/imperative-programming-1.html#side-effects-and-weak-polymorphism
-
- Jun 11, 2019
-
-
erwan authored
-
erwan authored
Indeed, by using the Env.nset and Env.nget defined in 0d6575a7 a pb that was hided by the use of Env.set and Env.get was triggered. The bug was that variables initialisations were done several times. In sasa.ml, the way I was updating the Env.t by iterating on the variables was forcing to "close" expressions that were calling init functions.
-
- Jun 06, 2019
-
-
erwan authored
-
- May 27, 2019
-
-
erwan authored
-
- May 23, 2019
-
-
erwan authored
-
- Apr 30, 2019
-
- Mar 26, 2019
-
-
erwan authored
Depending on the kind of network, we should raise an exception. Indeed such information should not be available in anonymous networks. We will add such checks later.
-