Skip to content
Snippets Groups Projects
Commit dc732cf2 authored by Pierre Loic Garoche's avatar Pierre Loic Garoche
Browse files

Solved scopes print order

parent 6f3a65e2
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,6 @@ let check_scopes main_node_name prog machines all_scopes scopes =
let scope_var_name vid = vid ^ "__scope"
(**********************************************************************)
......@@ -344,7 +343,7 @@ let register_scopes s =
option_all_scopes:=false;
let scope_list = Str.split (Str.regexp ", *") s in
let scope_list = List.map (fun scope -> Str.split (Str.regexp "\\.") scope) scope_list in
scopes_def := scope_list
scopes_def := List.rev scope_list
let register_inputs s =
activate ();
......
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