cplex parameters

Import the cplex module


In [2]:
import cplex

In [3]:
c = cplex.Cplex()

In [7]:
c.parameters.lpmethod.get()


Out[7]:
0

In [9]:
c.parameters.simplex.tolerances.markowitz.max()


Out[9]:
0.99999

In [10]:
c.parameters.simplex.tolerances.markowitz.default()


Out[10]:
0.01

In [ ]: