Fixed some meta_predicate/1 directives (goals are represented by "0", not ":".

This commit is contained in:
Paulo Moura 2011-06-25 06:50:22 -05:00
parent 5aa652d21e
commit 5332cc45fb
2 changed files with 4 additions and 4 deletions

View File

@ -135,7 +135,7 @@ key_statistics(Key, NOfEntries, TotalSize) :-
% Based on the SWI-Prolog definition minus reporting the number of inferences, % Based on the SWI-Prolog definition minus reporting the number of inferences,
% which YAP does not currently supports % which YAP does not currently supports
:- meta_predicate time(:). :- meta_predicate time(0).
time(Goal) :- time(Goal) :-
var(Goal), var(Goal),

View File

@ -12,9 +12,9 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
:- meta_predicate :- meta_predicate
parallel(:), parallel(0),
parallel_findall(?,:,?), parallel_findall(?,0,?),
parallel_once(:). parallel_once(0).