# platz A genetic-algorithm-based solver that assigns people to tables ("Tische") for an event, given group memberships, table sizes/neighbor relationships, and a configurable penalty scheme. It reads a guest list (XML) and a table layout (INI), searches for a good seating using a small custom GA framework, and writes the result to text/CSV output files. **This is Python 3 code** (migrated from an original Python 2 implementation). There are no third-party dependencies (standard library only), so `requirements.txt` is empty — it exists only so `bin/install_py` has something to install. ## Project structure ``` platz/ ├── bin/ # environment + launcher scripts (.bat + .sh pairs) ├── cfg/ # GA cycle definition and penalty scheme ├── libs/ # the two Python modules (ga.py, Strukturdaten.py, platz.py) ├── tests/ # unittest suite for Strukturdaten.py └── work/ # per-run input (table layout, guest list) and output ├── test1/ └── test2/ ``` - `libs/platz.py` — entry point; wires together config, input data, and the GA run. - `libs/ga.py` — generic genetic-algorithm scaffolding (`Loesung`, `Zyklus`, `Farm`). - `libs/Strukturdaten.py` — domain model for the seating problem (`Person`, `Gruppe`, `Tisch`, `Strafliste`, `Sitzplatzverteilung`, `XMLConfig`). ## Running the tests ```bash python -m unittest discover -s tests -p "test_*.py" -v ``` If a stray global `PYTHONPATH` entry shadows the standard-library `tests` package name (unrelated to this project), clear it for the command, e.g. `PYTHONPATH= python -m unittest discover -s tests -p "test_*.py" -v`. ## Setup 1. Install a Python interpreter (`py` on Windows / `python3` on Linux/macOS must be on `PATH`). 2. Run the installer for your platform to create a `.venv` and install `requirements.txt`: ```bat :: Windows bin\install_py.bat ``` ```bash # Linux/macOS bin/install_py.sh ``` All `bin/` scripts derive `PLATZ` automatically from their own location (no path editing required) by calling `setenv.bat`/`setenv.sh` first. ## Running ```bat :: Windows bin\activate_venv.bat bin\platz.bat --indir work\test1 ``` ```bash # Linux/macOS source bin/activate_venv.sh bin/platz.sh --indir work/test1 ``` `bin/platz.bat` / `bin/platz.sh` call `setenv` to set `PLATZ`, `PLATZ_CFG`, `PLATZ_LIBS`, `PLATZ_WORK`, `PLATZ_IN`, `PLATZ_OUT`, add `PLATZ_LIBS` to `PYTHONPATH`, and then run `libs/platz.py`, forwarding any extra arguments (like `--indir`) to it. Other helper scripts (`bin/setenv.*`, `bin/get_cmd.*`) follow the same environment convention: - `setenv` — sets all `PLATZ_*` environment variables and creates missing folders; sourced by every other script, not normally called directly. - `activate_venv` — activates the `.venv` created by `install_py`. - `get_cmd` — opens a new shell with the `PLATZ_*` environment already set. ### Configuring a run `--indir