A Python implementation of https://arxiv.org/abs/1709.01535.
Ensure that you have Python 3.7 or higher installed, then run (on a Linux/macOS terminal):
python -m venv .venv # Create a virtual environment for this project
source .venv/bin/activate # Activate the venv
pip install -Uqr requirements.txt # Install dependencies into the venv
# ...
# Run Python to your heart's content
# ...
deactivate # Leave the venvpython as18/as18.pySimply run pytest in your terminal.