Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
Simple Python Example
This section will work through a simple Python example in order to illustrate the use of the Gurobi Python interface. The example builds a model, optimizes it, and outputs the optimal objective value.
Our example optimizes the following model:
maximize | x | + | y | + | 2 z | ||
subject to | x | + | 2 y | + | 3 z | 4 | |
x | + | y | 1 | ||||
x, y, z binary |
Subsections