Select the kind of execution you want to experiment (the parallel option runs the program onto a network of LINUX Pentium PCs): parallel (not yet implemented, sorry) sequential display process graph (not yet implemented, sorry)
Just in case you selected the "parallel" option, select the number of networked workstation to be used: 1 2 3 4 5
Select the number of workers you want to put in the farm: 2 3 4 5 10 15 20
Input the unary function that has to be computed by the farm workers ( lines of ocaml code defining a function whose name has to be worker : let worker x = x + 1;;
Input the data sequence you want to submit to the farm, as an ocaml list:
[1;2;3;4;5]
Input a unary function (whose name has to be print_result) suitable for printing a result computed by the function worker : let print_result x = print_int x; print_newline();;