├── .gitignore ├── LICENSE ├── QDgym ├── QDgym_envs.py └── __init__.py ├── README.md ├── fig └── QD_envs2.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollebompa/QDgym/HEAD/LICENSE -------------------------------------------------------------------------------- /QDgym/QDgym_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollebompa/QDgym/HEAD/QDgym/QDgym_envs.py -------------------------------------------------------------------------------- /QDgym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollebompa/QDgym/HEAD/QDgym/__init__.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollebompa/QDgym/HEAD/README.md -------------------------------------------------------------------------------- /fig/QD_envs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollebompa/QDgym/HEAD/fig/QD_envs2.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollebompa/QDgym/HEAD/setup.py --------------------------------------------------------------------------------