CSE505/A/reach.P
2024-02-21 23:53:58 -05:00

17 lines
514 B
OpenEdge ABL

%input :- [reachin1000]. % one way of reading input facts
:- include(reachin1000). % 2nd way of reading input facts
reach(X) :- source(X).
reach(Y) :- reach(X), edge(X,Y).
:- table reach/1.
printReach :- reach(X), write(X), write(' '), fail.
printReach.
%timeReach :- cputime(X), input, printReach, cputime(Y), T is Y-X, write(T).
%timeReach :- input, cputime(X), printReach, cputime(Y), T is Y-X, write(T).
timeReach :- cputime(X), printReach, cputime(Y), T is Y-X, write(T).
source(3).