Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
russcip
Documentation
A safe Rust interface for SCIP. This crate also exposes access to the SCIP's C-API through the ffi module.
The project is currently an early-stage work in progress, issues/pull-requests are very welcome.
Dependencies
Make sure SCIP is installed, the easiest way to install it is to install a precompiled package from here or through conda by running
After which russcip would be able to find the installation in the current Conda environment. Alternatively, you can specify the installation directory through the SCIPOPTDIR environment variable.
Install
By running
or to get the most recent version, add the following to your Cargo.toml
[]
= { = "https://github.com/mmghannam/russcip" }
Example
Model and solve an integer program.
use Model;
use ObjSense;
use Status;
use VarType;
use Retcode;
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.