Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 0 years ago

Max Alekseyev gravatar image

It seems that the order number of a MIP variable can be obtained from its string representation as follows:

def get_order_number(mip_var):
    return int(str(mip_var)[2:])
click to hide/show revision 2
No.2 Revision

It seems that the order number (backend index) of a MIP variable can be obtained from its string representation as follows:

def get_order_number(mip_var):
get_backend_index(mip_var):
    return int(str(mip_var)[2:])

I've added a request for an "official" way to get this index at https://github.com/sagemath/sage/issues/38799