summaryrefslogtreecommitdiff
path: root/prisoners_dilemma.pl
diff options
context:
space:
mode:
Diffstat (limited to 'prisoners_dilemma.pl')
-rw-r--r--prisoners_dilemma.pl3
1 files changed, 2 insertions, 1 deletions
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.