reflect improved determinism thanks to the improvements by @notoria

This commit is contained in:
Markus Triska
2020-12-22 23:55:40 +01:00
parent d290596c1d
commit 27a52ef56a
6 changed files with 16 additions and 26 deletions

View File

@@ -34,8 +34,7 @@
Example:
?- current_time(T), phrase(format_time("%d.%m.%Y (%H:%M:%S)", T), Cs).
T = [...], Cs = "11.06.2020 (00:24:32)"
; false.
T = [...], Cs = "11.06.2020 (00:24:32)".
sleep(S) sleeps for S seconds (a floating point number).
@@ -107,15 +106,14 @@ report_time(T0) :-
false.
:- time(use_module(library(clpz))).
% CPU time: 2.762 seconds
true
; false.
% CPU time: 0.000 seconds
% CPU time: 0.001 seconds
true.
:- time(use_module(library(lists))).
% CPU time: 0.000 seconds
true
; % CPU time: 0.001 seconds
false.
% CPU time: 0.001 seconds
true.
?- time(member(X, [a,b,c])).
% CPU time: 0.000 seconds