Contribute to the code
We welcome contributions from the community to improve the OpenSTREAM solvers, documentation, and examples. Please follow these guidelines to ensure a smooth process.
How to Contribute
Fork the Repository
Click the Fork button on GitHub to create your copy.
Clone Your Fork
git clone https://github.com/<your-username>/openstream.git
cd openstream
Create a Feature Branch
git checkout -b feature/my-new-feature
Make Your Changes
Follow the coding standards outlined below.
Add tests for new functionality.
Commit and Push
git commit -m "Add feature: description"
git push origin feature/my-new-feature
Open a Pull Request
Go to the original repository and submit a PR.
Include a clear description of your changes.
Coding Standards
Python: Follow PEP8 guidelines.
MATLAB: Use clear variable names, comments, and avoid hard-coded paths.
Document all functions with docstrings or comments.
Keep commits atomic and descriptive.
Testing
Run existing tests (coming soon) before submitting changes.
Add new tests for any new functionality.
Use
pytestfor Python and built-in MATLAB testing frameworks where applicable.
Reporting Issues
Use the issue tracker on GitHub.
Provide:
Steps to reproduce
Expected vs actual behavior
Screenshots or logs if relevant
Code of Conduct
Please be respectful and constructive in all interactions.
Communication
Join discussions in GitHub Discussions.
For major changes, open an issue first to discuss your proposal.