简体   繁体   中英

Gurobi MVar: Accessing Attributes always throws a GurobiError

I am trying to use Gurobi's MVar class.

import gurobipy as gp

m = gp.Model()
v = m.addMVar((10,))
v.lb  # raises GurobiError, index out of range...

Call

m.update()

before accessing lb .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM