From cf338b50e67f487b848a14f1dbad1bb79246cf59 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 6 Nov 2012 17:30:47 +0100 Subject: prisoners_dilemma.pl: Disable automatic start for now.. --- prisoners_dilemma.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prisoners_dilemma.pl b/prisoners_dilemma.pl index ac267c2..ffcbfad 100644 --- a/prisoners_dilemma.pl +++ b/prisoners_dilemma.pl @@ -15,7 +15,7 @@ * along with this program. If not, see . */ -:-initialization(start). + %:-initialization(start). pay(c,d,1). pay(d,d,2). @@ -46,5 +46,5 @@ loop(Module, Hist, PayedA, PayedB) :- do(Choice, Module, Hist, PayedA, PayedB). -start(Module) :- consult(Module), loop(Module, [], [], []), halt. -start :- start(tit4tat). +start(Module) :- consult(Module), loop(Module, [], [], []). +start :- start(tit4tat),halt. -- cgit