summaryrefslogtreecommitdiff
path: root/grudger.pl
blob: 5337e495644aa610446e1739141f5c2abcb4f96d (plain)
1
2
3
4
5
6
7
% Cooperates until the second has defected, after
% that move defects forever (he does not forgive).
% http://euler.fd.cvut.cz/predmety/game_theory/lecture_repeat.pdf

grudger([], c).
grudger([d|_], d).
grudger([c|Tail], Decision) :- grudger(Tail, Decision).