Cleaned file.

This commit is contained in:
Konrad Pierzyński 2019-11-12 19:09:01 +00:00
parent 06af8200b6
commit a75a104392
1 changed files with 1 additions and 9 deletions

View File

@ -1,18 +1,10 @@
#!VENV/bin/python3
from teg import dominuje, wyplata
#from scipy.optimize import linprog
def zdominowana(player, strategy, payment_matrix_one, payment_matrix_two):
for i in range(0,len(payment_matrix_one if player == 1 else payment_matrix_two[0])):
strategy_check = [0 for p in strategy]
strategy_check[i] = 1
if( strategy == strategy_check ):
continue
if( dominuje(player, strategy_check, strategy, payment_matrix_one, payment_matrix_two ) == True ):
if( teg.dominuje(player, strategy_check, strategy, payment_matrix_one, payment_matrix_two ) == True ):
return True
return False
x = zdominowana(2,[1, 0,0],[[0,0,0],[0,0,0]],[[0,1,2],[0,1,2]])
print(x)