Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
Model.getGenConstrs()
getGenConstrs ( )
Retrieve a list of all general constraints in the model.
Return value:
All general constraints in the model.
Example usage:
gencons = model.getGenConstrs() for gc in gencons: if gc.GenConstrType == GRB.GENCONSTR_INDICATOR: (binvar, binval, expr, sense, rhs) = model.getGenConstrIndicator(gc) elif gc.GenConstrType == GRB.GENCONSTR_MAX: (resvar, vars, constant) = model.getGenConstrMax(gc) ...