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