# # UNSAT TEST # #
# Following program does 6 steps and returns
# to the state where it initially started.
#
# TML has to stop and outputs: unsat
#
# Not stopping would cause an infinite loop
start.
running :- start.
~start :- running.
stop :- running.
~running :- stop.
start :- stop.
~stop :- start.
Should be unsat at the end not before.
However, becoming unsat too soon...
Should be
unsat
at the end not before. However, becoming unsat too soon...Here is what happens on the TML bot
Currently 'unsat' Here
should be
stop
?