Files
mercury/tests/tabling/tc_loop.m
2018-07-08 23:20:52 +02:00

47 lines
893 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module tc_loop.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module list.
:- import_module solutions.
:- pragma require_feature_set([memo]).
main(!IO) :-
solutions(tc(1), Solns),
(
Solns = [],
io.write_string("loopcheck failed, tc has no solutions\n", !IO)
;
Solns = [_ | _],
io.write_string("loopcheck failed, tc has solutions\n", !IO)
).
:- pred tc(int::in, int::out) is nondet.
:- pragma loop_check(tc/2).
tc(A, B) :-
(
edge(A, B)
;
edge(A, C),
tc(C, B)
).
:- pred edge(int::in, int::out) is nondet.
edge(1, 2).
edge(1, 3).
edge(2, 1).
edge(3, 4).