PDA

View Full Version : >>> PROLOG <<<


rego
01-11-2005, 01:37 PM
hey,

i'm having trouble causing a program to stop running or halt when an event is triggered for example winning a game. i tried using the fail. predicate but that just causes backtracking and makes the program really messy!
does anyone have any other solutions?

many thanks

Trident
01-12-2005, 10:33 AM
hey,

i'm having trouble causing a program to stop running or halt when an event is triggered for example winning a game. i tried using the fail. predicate but that just causes backtracking and makes the program really messy!
does anyone have any other solutions?

many thanks
15059


Depends on the version. But generally you launch your program with a question with one variable and when it ends just instantiate that variable and cut.

stop_game:-X is ok,!.
start_game(X):-%your game here.
?- start_game(X);

Or, if you do not want to lug that X around and do not care about start_game evaluating to false you may just !,fail when needed, IIRC (note that, fail,!. is obviously pointless.) As I already said I nearly forgot the whole thing...