Created
April 29, 2011 23:28
-
-
Save Ramblurr/949225 to your computer and use it in GitHub Desktop.
Iterated Prisoner's Dilemma Scorer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
# | |
# Iterated prisoner's dilemma King of Hill Script Argument is a | |
# directory. We find all the executables therein, and run all possible | |
# binary combinations (including self-plays (which only count once!)). | |
import subprocess | |
import os | |
import sys | |
RESULTS = {"cc":(2,"K"), "ct":(-1,"R"), "tc":(4,"S"), "tt":(1,"E")} | |
def runOne(p,h): | |
"""Run process p with history h and return the standard output""" | |
#print "Run '"+p+"' with history '"+h+"'." | |
process = subprocess.Popen(p+" "+h,stdout=subprocess.PIPE,shell=True) | |
return process.communicate()[0] | |
def scoreRound(r1,r2): | |
return RESULTS.get(r1[0]+r2[0],0) | |
def runRound(p1,p2,h1,h2): | |
"""Run both processes, and score the results""" | |
r1 = runOne(p1,h1) | |
r2 = runOne(p2,h2) | |
(s1, L1), (s2, L2) = scoreRound(r1,r2), scoreRound(r2,r1) | |
return (s1, L1+h1), (s2, L2+h1) | |
def runGame(p1,p2): | |
sa, sd = 0, 0 | |
ha, hd = '', '' | |
for a in range(0,100): | |
(na, ha), (nd, hd) = runRound(p1,p2,ha,hd) | |
sa += na | |
sd += nd | |
return sa, sd | |
print "Finding warriors in " + sys.argv[1] | |
players=[sys.argv[1]+exe for exe in os.listdir(sys.argv[1]) if os.access(sys.argv[1]+exe,os.X_OK)] | |
scores={} | |
for p in players: | |
scores[p] = 0 | |
for i1 in range(0,len(players)): | |
p1=players[i1]; | |
for i2 in range(i1,len(players)): | |
p2=players[i2]; | |
print "Running " + p1 + " against " + p2 + "." | |
s1,s2 = runGame(p1,p2) | |
#print (s1, s2) | |
if (p1 == p2): | |
scores[p1] += (s1 + s2)/2 | |
else: | |
scores[p1] += s1 | |
scores[p2] += s2 | |
players_sorted = sorted(scores,key=scores.get) | |
for p in players_sorted: | |
print (p, scores[p]) | |
print "Winner is " + max(scores, key=scores.get) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment