メインコンテンツへスキップ

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

回答済み

コメント

1件のコメント

  • 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

サインインしてコメントを残してください。