PrisonersDilemma/main.py

27 lines
930 B
Python
Raw Normal View History

2024-04-26 20:01:54 +02:00
#basic setup
#The prisoner's dilemma is a game theory thought
#experiment that involves two rational agents, each
#of whom can COORPERATE for mutual benefit or betray
#their partner ("defect") for individual reward.
#imports
import helper_functions
import contenders
#vars
2024-04-26 20:37:23 +02:00
#keeping track of the individual games
2024-04-26 20:01:54 +02:00
games=[]
2024-04-26 20:37:23 +02:00
#keeping track of the games scores for later analysis
scores=[]
nr_of_rounds=30
nr_of_games=300
function1=contenders.random_positive_leaner
function2=contenders.random_positive_leaner
2024-04-26 20:01:54 +02:00
#XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# Put YOUR function down below
#XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
2024-04-26 20:37:23 +02:00
for i in range(nr_of_games):
helper_functions.play_game( games,function1,function2,nr_of_rounds)
scores.append(helper_functions.analyze_results(games))
games=[]
helper_functions.analyze_scores(scores)