If you have improvements to Polymath15, send us your pull requests! For those just getting started, Github has a howto.
Polymath15 team members will be assigned to review your pull requests. Once the pull requests are approved, we will merge the pull requests.
Before sending your pull request for review, make sure your changes are consistent with the guidelines and follow the Polymath15 coding style.
- We will develop more detailed guidelines as time passes.
Changes to Polymath15 Python code should conform to Google Python Style Guide
Use pylint
to check your Python changes. To install pylint
pip install pylint
To check a file with pylint
:
pylint --rcfile=pylintrc myfile.py
- Google Java Style Guide
- Google JavaScript Style Guide
- Google Shell Style Guide
- Google Objective-C Style Guide
All the tests are located in dbn_upper_bound/tests
To run python unit tests the command is
python -m unittest
You need to run this in the root folder