From 858300e97a00f969e16992d479698d048e551df6 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 8 Nov 2012 13:27:49 +0100 Subject: prisoners_dilemma.pl: Remove debug code --- prisoners_dilemma.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prisoners_dilemma.pl b/prisoners_dilemma.pl index 16d0388..f4f5d74 100644 --- a/prisoners_dilemma.pl +++ b/prisoners_dilemma.pl @@ -46,5 +46,6 @@ loop(Module, ModuleState, Hist, PayedA, PayedB) :- do(Choice, Module, ModuleState, Hist, PayedA, PayedB). -start(Module) :- atom_concat('rules/', Module, Path), write(Path), consult(Path), loop(Module, [], [], [], []). +start(Module) :- atom_concat('rules/', Module, Path), consult(Path), + loop(Module, [], [], [], []). start :- start(tit4tat),halt. -- cgit