scip-sys 0.1.10

Bindings for the C SCIP solver.
Documentation

scip-sys

tests

Raw rust bindings to SCIP's C-API. The bindings are automatically generated using bindgen. Meant to provide full control over SCIP's API, for a more restricted memory-safe API see russcip.

Dependencies

This crate depends on SCIP at runtime, the crate provides the bundled feature that tries to download a precompiled binary for your OS and architecture run the following command to add the crate with the bundled feature

cargo add scip-sys --features bundled

If the bundled feature is not enabled, will look for a scip installation in the current conda environment, if it is not found it will look for the SCIPOPTDIR environment variable. to install SCIP using conda run the following command

conda install --channel conda-forge scip

License

This repo is distributed under the open-source Apache 2.0 license. Although, to simplify the building process the C-headers for the SCIPOptSuite and its dependent software are included. These dependencies include Bliss that is distributed under the GNU Lesser General Public license.