Code contributions are very welcome and should comply to a few rules:
-
New features should be covered by tests and examples. Please extend tests and examples. Tests uses pytest and examples are meant to be accessible for PySCIPOpt newcomers (even advanced examples).
-
New code should be documented in the same style as the rest of the code.
-
New features or bugfixes have to be documented in the CHANGELOG.
-
New code should be pep8-compliant. Help yourself with the style guide checker.
-
Before implementing a new PySCIPOpt feature, check whether the feature exists in SCIP. If so, implement it as a pure wrapper, mimicking SCIP whenever possible. If the new feature does not exist in SCIP but it is close to an existing one, consider if implementing that way is substantially convenient (e.g. Pythonic). If it does something completely different, you are welcome to pull your request and discuss the implementation.
-
PySCIPOpt uses semantic versioning. Version number increase only happens on master and must be tagged to build a new PyPI release.
For general reference, we suggest:
- PySCIPOpt README;
- SCIP documentation;
- SCIP mailing list which can be easily searched with search engines (e.g. Google);
- open and closed PySCIPOpt issues;
- SCIP/PySCIPOpt Stack Exchange.
If you find this contributing guide unclear, please open an issue! :)
- update
CHANGELOG
- increase version number in
src/pyscipopt/__init__.py
according to semantic versioning - commit changes to the master branch
- tag new version
git tag vX.Y.Z
git push
&&git push --tags
A new PyPI package is automatically created by the Travis build job when pushing a new tag onto the master and the version has been increased. Also the documentation is autmatically created in the process.
PySCIPOpt is meant to be a fast-prototyping interface of the pure SCIP C API. By design, we distinguish different functions in PySCIPOPT:
- pure wrapping functions of SCIP;
- convenience functions.
PySCIPOpt wrappers of SCIP functions should act:
- with an expected behavior - and parameters, returns, attributes, ...
- as close to SCIP as possible
- without "breaking" Python and the purpose for what the language it is meant.
Ideally speaking, we want every SCIP function to be wrapped in PySCIPOpt.
Convenience functions are additional, non-detrimental features meant to help prototyping the Python way. Since these functions are not in SCIP, we wish to limit them to prevent difference in features between SCIP and PySCIPOPT, which are always difficult to maintain. A few convenience functions survive in PySCIPOpt when keeping them is doubtless beneficial.
Admittedly, there is a middle ground where functions are not completely
wrappers or just convenient. That is the case, for instance, of
fundamental Model
{.sourceCode} methods like addCons
{.sourceCode} or
writeProblem
{.sourceCode}. We want to leave their development to
negotiation.