- Timestamp:
- 06/30/08 09:22:26 (3 months ago)
- Files:
-
- 1 modified
-
trunk/examples/ack/SCRIPT.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/ack/SCRIPT.txt
r4323 r4334 13 13 14 14 15 % some example queries: 15 % some example queries for back-end Prolog compilers implementing the 16 % time/1 timing predicate (e.g. SWI-Prlog, YAP, or XSB): 16 17 17 18 ?- time(ack::ack(2, 4, V)). … … 26 27 % 25,730 inferences, 0.01 CPU in 0.01 seconds (89% CPU, 2573000 Lips) 27 28 V = 125. 29 30 31 % some example queries for other back-end Prolog compilers: 32 33 ?- ack::ack(2, 4, V). 34 V = 11 35 yes 36 37 ?- ack::ack(3, 3, V). 38 V = 61 39 yes 40 41 ?- ack::ack(3, 4, V). 42 V = 125 43 yes
