From 2313dafa62b7fbb8fd0f9141169ac96dd9104cdf Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Mon, 18 Mar 2024 07:49:21 +0100 Subject: [PATCH 1/2] Add contributing section to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8b0faac..6720de3 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,9 @@ Some of SCIP's plugins are imported to the rust interface as traits. Currently t To add a custom plugin to a SCIP `Model` instance, you should implement its trait and call the corresponding `include_{PLUGIN_NAME}` method. For examples on implementing the specific plugin trait you can check the tests in the corresponding files. +## Contibuting +Thinking about contributing to _russcip_? First of all thank you! You can check our issues, there's a bunch of [_good_first_issues_](https://github.com/scipopt/russcip/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), or you can check our contribution [guide](CONTRIBUTING.md). If you'd like to contribute and unsure what to do, or thinking about a big feature and want to discuss if it makes sense and what is the best way to do it? you could open a new issue/disccusion or send me a quick email [@mmghannam](https://github.com/mmghannam). + ## About SCIP SCIP is currently one of the fastest non-commercial solvers for mixed integer programming (MIP) and mixed integer nonlinear programming (MINLP). It is also a framework for constraint integer programming and branch-cut-and-price. It allows for total control of the solution process and the access of detailed information down to the guts of the solver. From c404e2ed90d7b291670fd13d2a14589e2b463f40 Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Mon, 18 Mar 2024 07:52:22 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6720de3..43251ef 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Some of SCIP's plugins are imported to the rust interface as traits. Currently t To add a custom plugin to a SCIP `Model` instance, you should implement its trait and call the corresponding `include_{PLUGIN_NAME}` method. For examples on implementing the specific plugin trait you can check the tests in the corresponding files. ## Contibuting -Thinking about contributing to _russcip_? First of all thank you! You can check our issues, there's a bunch of [_good_first_issues_](https://github.com/scipopt/russcip/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), or you can check our contribution [guide](CONTRIBUTING.md). If you'd like to contribute and unsure what to do, or thinking about a big feature and want to discuss if it makes sense and what is the best way to do it? you could open a new issue/disccusion or send me a quick email [@mmghannam](https://github.com/mmghannam). +Thinking about contributing to _russcip_? First of all thank you! You can check our issues [page](https://github.com/scipopt/russcip/issues), there's a bunch of [_good_first_issues_](https://github.com/scipopt/russcip/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), or you can check our contribution [guide](CONTRIBUTING.md). If you'd like to contribute and unsure what to do, or thinking about a big feature and want to discuss if it makes sense and what is the best way to do it? you could open a new [issue](https://github.com/scipopt/russcip/issues/new/choose)/[discussion](https://github.com/scipopt/russcip/discussions/new/choose) or send me a quick email [@mmghannam](https://github.com/mmghannam). ## About SCIP