Skip to content

Commit c399d46

Browse files
committed
Be more precise in predicate comment
1 parent 471ccca commit c399d46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

benches/reif.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@
4747
).
4848

4949

50-
%% exptrue(?N).
50+
%% exptrue(N).
5151
%
52-
% Succeeds 10^N times, usefull as a cheap way to repeat a given predicate many
53-
% times in benchmarks. There are many more ways to generate choice points, but
54-
% this one by far has the lowest overhead.
52+
% Succeeds 10^N times if N is ground, usefull as a cheap way to repeat a given
53+
% predicate many times in benchmarks. There are many more ways to generate
54+
% choice points, but this one by far has the lowest overhead.
5555
exptrue(0).
5656
exptrue(1) :- ten.
5757
exptrue(2) :- ten, ten.

0 commit comments

Comments
 (0)