Use the bispectrum on the symmetric group to solve graph isomorphism.
git clone git@github.com:sophiaas/graphbispectrum.git
cd graphbispectrum
virtualenv env
. env/bin/activate
pip install cython
pip install -r requirements.txt
python setup.py build_ext --inplace
nosetests -s tests
deactivateA Dockerfile and a docker-compose.yml are included in the root of the repo.
docker-compose build
docker-compose run graphbispectrum bashThis should give you an interactive shell inside the container. The code is mounted in the /code directory.
cd /code
python setup.py build_ext --inplace --force
nosetests -s tests