Project Dilemma is a simulation tool for testing algorithms in the prisoner's dilemma. It provides a standard interface to define both algorithm and simulation classes so that they may be easily tested. Inspired by this Veritasium video.
pip install project-dilemmapip install .Project Dilemma will automatically try to load the configuration from the user's and system's configuration directories,
usually set by $XDG_CONFIG_DIRS. For most Linux users, this will check ~/.config/project_dilemma and them somewhere
in /etc.
This behaviour can be overridden by specifying the --config flag to the config file you want to use.
Project Dilemma uses the TOML format for configuration files. This is a human-readable format that is easy to write. The schema has been provided below:
simulation_id = "name of simulation"
algorithms_directory = "/path/to/algorithms/"
nodes = [ { node_id = "node_1", algorithm = { file = "foo.py", object = "Foo" }, quantity = 11 },
{ node_id = "node_2", algorithm = { file = "bar/baz.py", object = "Baz" } } ]
simulation = { file = "foobar.py", object = "GenerationalFooBar" }
generational_simulation = { file = "foobar.py", object = "FooBar" }
simulation_arguments = { foo = "bar" }
simulation_data = "path/to/round.json"
simulation_data_output = "path/to/round.json"
simulation_results_output = "path/to/results.json"
simulations_directory = "/path/to/simulations/"Because a lot of the objects, such as the algorithms and simulations, can or must be provided by the user, this data must be imported dynamically. In order to easily import these objects without importing every simulation and algorithm, the following format can be used to tell the program where to look for the imports:
{ file = "path/to/file", object = "ObjectToImport" }Algorithms can be defined very easily. Only four things must be done to subclass the Algorithm interface:
algorithm_iddecide functionThe decide function is what the simulation uses to run the algorithm.
It accepts a project_dilemma.interfaces.base.Rounds object which can be used to get the results of prior rounds.
The function should return True for cooperation, and False for defection.
If you want to add mutations, set the static mutation list after defining the class as to avoid circular imports.
A template has been provided in templates/algorithm_template.py for ease of use.
Simulations a more complicated to configure as compared to algorithms.
You only need to override the run_simulation and process_simulation methods, but these are incredibly important.
run_simulation returns a project_dilemma.interfaces.base.Simulations object that will be used by
process_simulation to get the results.
For example, the provided standard simulations process the rounds data to calculate scores for each node
A template can be found in templates/simulation_template.py.
Generational Simulations are deceptively simple.
There is only one function to override: generational_hook.
However, this means that all the generational processing must be done in this function.
A template has been provided in templates/generational_simulation_template.py.
Copyright 2023 Gabriele Ron
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
This project utilizes the platformdirs project which is licensed under the MIT License. Copyright (c) 2010-202x The platformdirs developers