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/solver.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

24 lines
411 B
Plaintext

:- object(solver).
:- info([
version is 1.0,
date is 2004/5/2,
author is 'Paulo Moura',
comment is 'Simple meta-interpreter for pure Prolog.']).
:- public(solve/1).
:- mode(solve(+goal), zero_or_more).
:- info(solve/1, [
comment is 'Proofs goal.',
argnames is ['Goal']]).
solve(true) :-
!.
solve((A, B)) :-
!, solve(A), solve(B).
solve(A) :-
clause(A, B), solve(B).
:- end_object.