Introduction To Python
Introduction To Python
• General
• Automatic presolve
• Identifying irreducible inconsistent subsystems (IIS)
• Automated parameter tuning tool
• …
• Command-line tool
• Matrix-oriented APIs
• C, MATLAB, R
• Object-oriented APIs
• C++, Java, .NET, Python
• Modeling systems
• Commercial: AMPL, Frontline Solvers, …
• Free: JuliaOpt, PuLP, Pyomo, SolverStudio, …
• Goals:
• Make yourself familiar with Jupyter Notebook
• Solve a model file in MPS format
• Steps:
• Import the gurobipy module
• Create model object from model file
• Solve model to optimality
• Print solution values
Gurobi 7.0.2 (mac64, Python) logging started Thu Feb 2 11:57:06 2017
Variable X
-------------------------
X01 80
X02 25.5
X03 54.5
X04 84.8
X06 18.2143
X14 18.2143
X16 19.3071
X22 500
X23 475.92
X24 24.08
X26 215
X36 339.943
X37 383.943
• Interactive shell provides access to all Gurobi Optimizer functionality through Python API
• Attributes are the primary mechanism for querying and Constraints Attributes
• Examples:
• print(m.getAttr('ObjVal'))
• print(m.ObjVal)
• Primary objects
• Model the model
• Var a variable
• Constr a constraint
• Parameter/attribute examples:
• setParam('TimeLimit', 60) Set global parameter
• model.TimeLimit = 60 Set local parameter
• variable.VarName = 'TotalCosts' Set variable attribute
• print(constraint.RHS) Set constraint attribute
• Notes/Hints:
• Don't forget to indent for control structures and enter blank line to end the for loop
• Use help(Model) to replace <get a list of variables in the model> with correct method
• Use help(Var) to replace <variable name> and <solution value> with correct attributes
• Ex: IndentationError raised when block spacing is incorrect (must indent before if)
• Algorithms
• Model.optimize() solve a model
• Model.reset() discard any solution information (next solve starts from scratch)
• Model.presolve() create new model containing presolved version of original model
• Model.computeIIS() compute IIS for an infeasible model
• Model.feasRelax() perform feasibility relaxation on a model by introducing penalty variables
and penalty objective
• Python programs are typically stored in text files with .py extension
• Any text editor can be used to edit them (ex: notepad)
• Most programming editors have Python mode with syntax highlighting, etc.
• Comments are preceded with '#' character
• Use command line to run program with Python interpreter distributed with Gurobi
# print to console
print('This program creates an empty model named:', m.Modelname)
print('Model exported to emptymodel.mps and emptymodel.lp')
• Common questions:
• Can Gurobi read data from … ?
• Can Gurobi output the solution as …?
• Can Gurobi be used through a web service?
• Can Gurobi solve this model using an approach that … ?
• Can Gurobi… ?
• The answer:
• Yes, most of the time since Gurobi stands on the shoulders of giants
• Python includes a large standard library
• Many more add-on libraries and frameworks are available for download
• The Python API is a full interface that includes all Gurobi features
• You can use Python to build powerful, complete Gurobi applications
http://pandas.pydata.org
http://bokeh.pydata.org
http://www.gurobi.com/documentation/current/refman/index.html
http://www.gurobi.com/resources/examples/example-models-overview
• Example Tour
• 22 examples
• Examples for all APIs
• Reference Manual
• Detailed information on APIs, parameters, attributes, …