Gurobi Modeling Series Tutorial 1-Basic Operation Tutorial

Gurobi Kenmi

Parameter introduction

Parameter controls the behavior of the optimizer and needs to be set before the optimization starts

Attributes control the characteristics of the model (including models, variables, constraints, targets, etc.)

Environment contains a container for models and global parameters, and is also a node for license control

double

from gurobipy import *
cities  = [('A','B'),('A','C'

Guess you like

Origin blog.csdn.net/weixin_40539952/article/details/108791934