-
Notifications
You must be signed in to change notification settings - Fork 1
/
gambit.py
257 lines (213 loc) · 7.48 KB
/
gambit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# A class tha provides various methods of
# finding the Nash Equilibria of a NFG.
# Currently, only supports two command-line
# commands of GAMBIT. Namely:
#
# 1. General Newton Method (gambit-gnm)
# for n-player games
#
# 2. Extreme Point Enumeration (gambit-enummixed)
# for 2-player games
#
# The default method
#
#############
# Constants #
#############
# Python3 does not provide an "infinite"
# Integer, we assign a huge value
max_players = 2**32
#############
# Libraries #
#############
import subprocess
###########
# Classes #
###########
class method_vals:
gnm_val = 0
xpe_val = 1
enp_val = 2 # enumerate pure
pol_val = 3
method_vals = method_vals()
method_vals_list = [
method_vals.gnm_val,
method_vals.xpe_val,
method_vals.enp_val,
method_vals.pol_val
]
class method_names:
gnm = "Generalized Newton Method"
xpe = "Extreme Point Enumeration"
enp = "Enumerate Pure Nash Equilibria"
pol = "Support Enumeration"
method_names = method_names()
method_names_list = [
method_names.gnm,
method_names.xpe,
method_names.enp,
method_names.pol
]
# the maximum number of players
# that the method can support
class method_max_players:
gnm = max_players
xpe = 2
enp = max_players
pol = max_players
method_max_players = method_max_players()
method_max_players_list = [
method_max_players.gnm,
method_max_players.xpe,
method_max_players.enp,
method_max_players.pol
]
class Gambit:
def __init__(self, decimal = 8, method_val = method_vals.pol_val, timeout = 1):
assert method_val in method_vals_list
assert decimal > 0
# Set the number opf decimal points
self.decimal = decimal
# Set a timeout for the sub-process calls
self.timeout = timeout
# The method whose behaviour will mirror in the method
# compute_nash_equilibria()
self.default_method_val = method_val
#############
# Accessors #
#############
def get_default_method_val(self):
return self.default_method_val
def get_default_method_name(self):
return method_names_list[self.default_method_val]
###########
# Methods #
###########
def generalized_newton_method(self, nfg_file, n_perturb=100):
try:
gambit_call = subprocess.run(
[
"gambit-gnm",
"-q",
"-d " + str(self.decimal),
"-n",
str(n_perturb)
],
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
text=True,
input=nfg_file,
timeout=self.timeout
)
gambit_out = gambit_call.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
#return "\n".join(list(set(gambit_out.split('\n'))))
return list(set(gambit_out.split('\n')))
except subprocess.TimeoutExpired as time_out:
gambit_out = time_out.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
#return "\n".join(list(set(gambit_out.decode("utf-8").split('\n'))))
return list(set(gambit_out.decode("utf-8").split('\n')))
def extreme_point_enumeration(self, nfg_file):
try:
gambit_call = subprocess.run(
[
"gambit-enummixed",
"-q",
"-d " + str(self.decimal)
],
stdout=subprocess.PIPE,
stderr = subprocess.DEVNULL,
text=True,
input=nfg_file,
timeout=self.timeout
)
gambit_out = gambit_call.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
# return "\n".join(list(set(gambit_out.split('\n'))))
return list(set(gambit_out.split('\n')))
except subprocess.TimeoutExpired as time_out:
gambit_out = time_out.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
# return "\n".join(list(set(gambit_out.decode("utf-8").split('\n'))))
return list(set(gambit_out.decode("utf-8").split('\n')))
def enumerate_pure_equlibria(self, nfg_file):
try:
gambit_call = subprocess.run(
[
"gambit-enumpure",
"-q"#,
#"-d 8"
],
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
text=True,
input=nfg_file,
timeout=self.timeout
)
gambit_out = gambit_call.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
# return "\n".join(list(set(gambit_out.split('\n'))))
return list(set(gambit_out.split('\n')))
except subprocess.TimeoutExpired as time_out:
gambit_out = time_out.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
# return "\n".join(list(set(gambit_out.decode("utf-8").split('\n'))))
return list(set(gambit_out.decode("utf-8").split('\n')))
def support_enumeration(self, nfg_file):
try:
gambit_call = subprocess.run(
[
"gambit-enumpoly",
"-q",
"-H",
"-d " + str(self.decimal)
],
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
text=True,
input=nfg_file,
timeout=self.timeout
)
gambit_out = gambit_call.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
# return "\n".join(list(set(gambit_out.split('\n'))))
return list(set(gambit_out.split('\n')))
except subprocess.TimeoutExpired as time_out:
gambit_out = time_out.stdout
if gambit_out == None:
print("Warning: Gambit: No Nash Equilibria found before timeout")
return None
else:
# return "\n".join(list(set(gambit_out.decode("utf-8").split('\n'))))
return list(set(gambit_out.decode("utf-8").split('\n')))
def compute_nash_equilibria(self, nfg_file):
if self.default_method_val == method_vals.gnm_val:
return self.generalized_newton_method(nfg_file)
if self.default_method_val == method_vals.xpe_val:
return self.extreme_point_enumeration(nfg_file)
if self.default_method_val == method_vals.enp_val:
return self.enumerate_pure_equlibria(nfg_file)
if self.default_method_val == method_vals.pol_val:
return self.support_enumeration(nfg_file)