This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/examples/metainterpreters/tracer.lgt
pmoura b25690af56 Logtalk 2.17.1 files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1071 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2004-06-06 22:46:45 +00:00

40 lines
803 B
Plaintext

:- object(tracer).
:- info([
version is 1.0,
date is 2004/5/5,
author is 'Paulo Moura',
comment is 'A simple tracer meta-interpreter for pure Prolog.']).
:- public(trace/1).
:- mode(trace(+goal), zero_or_more).
:- info(trace/1, [
comment is 'Traces goal proof.',
argnames is ['Goal']]).
trace(Goal) :-
trace(Goal, 1).
trace(true, _) :-
!.
trace((A, B), Depth) :-
!, trace(A, Depth), trace(B, Depth).
trace(A, Depth) :-
write_trace(call, A, Depth),
clause(A, B),
Depth2 is Depth + 1,
trace(B, Depth2),
( write_trace(exit, A, Depth)
;
write_trace(redo, A, Depth),
fail).
trace(A, Depth) :-
write_trace(fail, A, Depth),
fail.
write_trace(Port, Goal, Depth) :-
write(Depth), write(' '), write(Port), write(': '), writeq(Goal), nl.
:- end_object.