make sure throw goes away on deterministic computations.
This commit is contained in:
parent
d7559c3f96
commit
42442bd360
26
pl/boot.yap
26
pl/boot.yap
@ -510,17 +510,17 @@ true :- true.
|
|||||||
),
|
),
|
||||||
fail.
|
fail.
|
||||||
|
|
||||||
'$do_yes_no'([X|L], M) :- !, '$csult'([X|L], M).
|
'$do_yes_no'([X|L], M) :- !, '$csult'([X|L], M).
|
||||||
'$do_yes_no'(G, M) :-
|
'$do_yes_no'(G, M) :-
|
||||||
'$exit_system_mode',
|
'$exit_system_mode',
|
||||||
'$execute'(M:G),
|
'$execute'(M:G),
|
||||||
( '$enter_system_mode' ; '$exit_system_mode', fail).
|
( '$enter_system_mode' ; '$exit_system_mode', fail).
|
||||||
|
|
||||||
'$write_query_answer_true'([]) :- !,
|
'$write_query_answer_true'([]) :- !,
|
||||||
format(user_error,'~ntrue',[]).
|
format(user_error,'~ntrue',[]).
|
||||||
'$write_query_answer_true'(_).
|
'$write_query_answer_true'(_).
|
||||||
|
|
||||||
'$output_frozen'(_,V,LGs) :-
|
'$output_frozen'(_,V,LGs) :-
|
||||||
\+ '$undefined'(bindings_message(_,_,_), swi),
|
\+ '$undefined'(bindings_message(_,_,_), swi),
|
||||||
swi:bindings_message(V, LGs, []), !.
|
swi:bindings_message(V, LGs, []), !.
|
||||||
'$output_frozen'(G,V,LGs) :-
|
'$output_frozen'(G,V,LGs) :-
|
||||||
@ -1124,8 +1124,10 @@ expand_term(Term,Expanded) :-
|
|||||||
% where was the previous catch
|
% where was the previous catch
|
||||||
catch(G, C, A) :-
|
catch(G, C, A) :-
|
||||||
'$catch'(C,A,_),
|
'$catch'(C,A,_),
|
||||||
|
yap_hacks:current_choice_point(CP0),
|
||||||
'$execute'(G),
|
'$execute'(G),
|
||||||
'$true'.
|
yap_hacks:current_choice_point(CP1),
|
||||||
|
(CP0 == CP1 -> !; true ).
|
||||||
|
|
||||||
% makes sure we have an environment.
|
% makes sure we have an environment.
|
||||||
'$true'.
|
'$true'.
|
||||||
@ -1139,8 +1141,10 @@ catch(G, C, A) :-
|
|||||||
'$system_catch'(G, M, C, A) :-
|
'$system_catch'(G, M, C, A) :-
|
||||||
% check current trail
|
% check current trail
|
||||||
'$catch'(C,A,_),
|
'$catch'(C,A,_),
|
||||||
|
yap_hacks:current_choice_point(CP0),
|
||||||
'$execute_nonstop'(G, M),
|
'$execute_nonstop'(G, M),
|
||||||
'$true'.
|
yap_hacks:current_choice_point(CP1),
|
||||||
|
(CP0 == CP1 -> !; true ).
|
||||||
|
|
||||||
%
|
%
|
||||||
% throw has to be *exactly* after system catch!
|
% throw has to be *exactly* after system catch!
|
||||||
|
Reference in New Issue
Block a user