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

Update: write closing message on stdout (it's not an error message!)

parent b697d9e5
No related branches found
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ let () = ...@@ -158,7 +158,7 @@ let () =
| Failure msg -> Printf.eprintf " [sasa] Error: %s\n%!" msg | Failure msg -> Printf.eprintf " [sasa] Error: %s\n%!" msg
| Silent i -> | Silent i ->
let str = if args.rif then "#" else "" in let str = if args.rif then "#" else "" in
Printf.eprintf "\n%sThis algo is silent after %i move%s, %i step%s, %i round%s.\n" Printf.printf "\n%sThis algo is silent after %i move%s, %i step%s, %i round%s.\n%!"
str !moves (plur !moves) i (plur i) !rounds (plur !rounds); str !moves (plur !moves) i (plur i) !rounds (plur !rounds);
flush stderr; flush stderr;
flush stdout; flush stdout;
...@@ -167,8 +167,8 @@ let () = ...@@ -167,8 +167,8 @@ let () =
flush stdout flush stdout
| Legitimate i -> | Legitimate i ->
let str = if args.rif then "#" else "" in let str = if args.rif then "#" else "" in
Printf.eprintf Printf.printf
"\n%sThis algo Reached a legitimate configuration after %i moves, %i steps, %i rounds.\n" "\n%sThis algo Reached a legitimate configuration after %i moves, %i steps, %i rounds.\n%!"
str !moves i !rounds; str !moves i !rounds;
flush stderr; flush stderr;
flush stdout; flush stdout;
......
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