Skip to main content

Mask MVar to only treat part of the array as decision variables

Answered

Comments

1 comment

  • Riley Clement
    • Gurobi Staff

    Hi Jelle,

    We don't have an ability to mask, but you can set the upper bound on these variables to 0, and our presolve routine will remove them.

    With our matrix API this can be done like so:

    X = model.addMVar(p.shape, vtype="B", ub=~np.isnan(p))

    - Riley

    1

Please sign in to leave a comment.