docs.rs failed to build russcip-0.1.7
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.
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.
Visit the last successful build:
russcip-0.10.0
russcip
A safe Rust interface for SCIP. The project is currently an early-stage work in progress, issues/pull-requests are very welcome.
This crate also exposes access to the SCIP's C-API through the ffi module.
Dependencies
make sure SCIP 8.0.3 is installed and included in the library path, or define an environment variable SCIPOPTDIR with the install directory.
Install
By running
or to get the most recent version, add the following to your Cargo.toml
[dependencies]
russcip = { git = "https://github.com/mmghannam/russcip" }
Example
Model and solve an integer program.
use Model;
use ObjSense;
use Status;
use VarType;