run_on_po(PO_Name,TimeOut) :-
get_disprover_po(PO_Name,Context,Goal,AllHypotheses,SelectedHypotheses,Status),
formatsilent('Checking PO ~w (~w in Rodin)~n',[PO_Name,Status]),
load_event_b_project([],[Context],[],_),
start_animation,
debug_println(5,loaded_context),
(debug_mode(on) -> translate:print_raw_bexpr(Goal),nl ; true),
statistics(walltime,[T1,_]),
(my_disprove(PO_Name,Goal,AllHypotheses,SelectedHypotheses,TimeOut,OutResult)
-> translate_result_for_po(OutResult,ProverResult,Color),
(silent_mode(on) -> true
; statistics(walltime,[T2,_]), WT is T2-T1,
%format(user_output,'Full result for PO ~w is ~w~n',[PO_Name,OutResult]),
format(user_output,'Disprover Result (~w ms): PO ~w is ',[WT,PO_Name]),
format_with_colour_nl(user_output,Color,'~w',[ProverResult])
),
print_solution(OutResult),
functor(OutResult,RawOutFunctor,_),
assertz(disprover_result(PO_Name,ProverResult,RawOutFunctor)),
check_soundness(ProverResult,Status,PO_Name)
; add_error(disprover,'Disprover failed: ',(PO_Name:Status)),
assertz(disprover_result(PO_Name,'failure',unknown))
).
run_on_po(PO_Name,_TimeOut) :- nonvar(PO_Name),
\+ get_disprover_po(PO_Name,_,_,_,_,_),
format('PO ~w does not exist !~n',[PO_Name]),
findall(PO,get_disprover_po(PO,_,_,_,_,_),L),
format('Available POs: ~w~n',[L]),
fail.