generic-bnp 0.1.0

GenericBnP is a Branch & Price library for the programming language Rust. It supports custom cuts, dual stabilization, primal heuristics, and multithreaded evaluation.
Documentation

with import <nixpkgs> {};
let
 gurobi_fix = gurobi.override { python3 = python310; };

in

mkShell {
    buildInputs = [
	gcc
        llvmPackages.bintools
        pkg-config
        gurobi_fix
        rustup
        xdot

    ];
    allowUnfree = true; 
    shellHook = ''
      export GUROBI_HOME="${gurobi_fix}"
      export LD_LIBRARY_PATH="$GUROBI_HOME/lib"
    ''; 
}