We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471ccca commit c399d46Copy full SHA for c399d46
benches/reif.pl
@@ -47,11 +47,11 @@
47
).
48
49
50
-%% exptrue(?N).
+%% exptrue(N).
51
%
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.
+% Succeeds 10^N times if N is ground, usefull as a cheap way to repeat a given
+% predicate many times in benchmarks. There are many more ways to generate
+% choice points, but this one by far has the lowest overhead.
55
exptrue(0).
56
exptrue(1) :- ten.
57
exptrue(2) :- ten, ten.
0 commit comments