grb 1.0.0

A Rust API for Gurobi optimizer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# grb

This crate provides Rust bindings for Gurobi Optimizer.  It currently requires Gurobi 9.0 or higher.

This library started as fork of [`rust-gurobi`](https://github.com/ubnt-intrepid/rust-gurobi).  It has since undergone a number
of fundamental changes. 

## Installing and Linking

* Before using this crate, you should install Gurobi and obtain a [license]http://www.gurobi.com/downloads/licenses/license-center.

* **Linking**: Make sure that the environment variable `GUROBI_HOME` is set to the installation path of Gurobi
  (like `C:\gurobi652\win64` or `/opt/gurobi652/linux64`).  If you are using the Conda package
  from the Gurobi channel, the build script will fall back to `GUROBI_HOME=${CONDA_PREFIX}`, so you
  should not set `GUROBI_HOME`.

## License
This software is released under the [MIT license](LICENSE).