#!/bin/sh

GUROBI_HOME=/home/mike/opt/gurobi911/linux64
export GUROBI_HOME

if test -z "${GUROBI_HOME}" ; then
  echo
  echo "Environment variable GUROBI_HOME is not set.  Consult the Gurobi"
  echo "Quick Start Guide for information on how to set it."
  echo
fi

$GUROBI_HOME/bin/gurobi.sh $0.py "$@"


