├── .coverage ├── .gitignore ├── README.md ├── backend_demo.py ├── bootstrap_demo.py ├── ct_framework.py ├── ct_tests.py ├── demo.py └── requirements.txt /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/.coverage -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | fix.py 2 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/README.md -------------------------------------------------------------------------------- /backend_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/backend_demo.py -------------------------------------------------------------------------------- /bootstrap_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/bootstrap_demo.py -------------------------------------------------------------------------------- /ct_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/ct_framework.py -------------------------------------------------------------------------------- /ct_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/ct_tests.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvelesandro/constructor-theory-simulator/HEAD/demo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | --------------------------------------------------------------------------------