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])