gurobirs 0.0.2

A Rust-API resembling the C++ API of the Gurobi Optimizer.
1
2
3
4
5
6
7
8
9
10
11
12
use gurobirs_sys as ffi;

mod attributes;
mod callback;
mod constr;
mod env;
mod error;
mod model;
mod modeling;
mod parameters;
pub mod prelude;
mod var;