Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
MQConstr.tolist()
tolist ( )
Return the quadratic constraints associated with this matrix quadratic constraint as a list of individual QConstr objects.
Return value:
List of QConstr objects.
Example usage:
mqc = model.addConstr(x * y <= b) qconstrlist = mqc.tolist() # Do something with the QConstr correponding to mqc[3] print(qconstrlist[3])