JobShopScheduling/Readme.md

18 lines
596 B
Markdown
Raw Permalink Normal View History

2017-06-17 01:32:29 +02:00
# Lösen von Job Shop Scheduling Problemen mit Simulated Annealing
## Tooling
2017-06-20 16:25:18 +02:00
- Python 3.6
2017-06-17 01:32:29 +02:00
- [MyPy](http://www.mypy-lang.org/ ) für statische Typchecks
- [Pandoc](https://pandoc.org/ ) für die Dokumentation
2017-06-18 22:49:37 +02:00
- Python Module: siehe [requirements.txt](https://pip.pypa.io/en/latest/user_guide/#requirements-files )
Zur einfachen Entwicklung wird die Verwendung eines [venv](https://docs.python.org/3/library/venv.html ) empfohlen, bevorzugter Name: *pyenv*
Erstellung + Installation aller benötigten Module:
```bash
$ python -m venv pyenv
$ ./pyenv/bin/pip install -r requirements.txt
```