%------------------------------------------------------------------------ % Program that used to give wrong results. % % Model T = {}, F = {r}, U = {p,q}. %------------------------------------------------------------------------ :- table p/0, q/0, r/0. p :- tnot(p), q. p :- tnot(q), r. q :- tnot(p). r :- fail. %------------------------------------------------------------------------ test :- p, fail. test :- ( p -> ( tnot(p) -> writeln('p is undefined (OK)') ; writeln('p is true') ) ; writeln('p is false') ), ( q -> ( tnot(q) -> writeln('q is undefined (OK)') ; writeln('q is true') ) ; writeln('q is false') ), ( r -> ( tnot(r) -> writeln('r is undefined') ; writeln('r is true') ) ; writeln('r is false (OK)') ).