Skip to content
Snippets Groups Projects
Commit d1e73ef9 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[aorai] Frama_C_show_aorai_state can now output value of args even in non-deterministic case

parent 2f5342a4
No related branches found
No related tags found
No related merge requests found
......@@ -69,10 +69,10 @@ let builtin_show_aorai_state state args =
let history = Data_for_aorai.(curState :: (whole_history ())) in
Aorai_option.result ~current:true "@[<hv>%a@]"
(Pretty_utils.pp_list ~sep:" <- " (show_aorai_variable state)) history;
if args <> [] then begin
Aorai_option.result ~current:true "@[<hv>%a@]"
(Pretty_utils.pp_list ~sep:"," show_val) args
end;
end;
if args <> [] then begin
Aorai_option.result ~current:true "@[<hv>%a@]"
(Pretty_utils.pp_list ~sep:"," show_val) args
end;
(* Return value : returns nothing, changes nothing *)
Eva.Builtins.States [state]
......
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