/CGT-Assignment1-2ndSession

Assignment 1 of the CGT course 2nd session

Primary LanguageJupyter NotebookMIT LicenseMIT

Assignment 1 Second Session of Computational Game Theory Course

This repository contains the files required to complete the first assigment of the the Computational Game Theory (CGT) course.

To install all required packages, go to the CGT-course directory and run:

python -m venv cgtenv
source cgtenv/bin/activate
pip install -r requirements.txt

Or with anaconda:

conda create --name cgtenv
conda activate cgtenv
pip install -r requirements.txt

Finally, to make your virual environment visible to jupyter:

python -m ipykernel install --user --name=cgtenv

The EGTtools module contains classes and functions that you may use to investigate the evolutionary dynamics in 2-player games.

The CGT-Exercise is a jupyter notebook that contains all the information required to complete your assignment.