Try our new documentation site (beta).
Model.getParamInfo()
getParamInfo ( paramname )
Retrieve information about a Gurobi parameter, including the type, the current value, the minimum and maximum allowed values, and the default value.
Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.
Arguments:
paramname: String containing the name of the parameter of interest. The name can include '*' and '?' wildcards. If more than one parameter matches, the matching names are listed and the method returns None.
Return value:
Returns a 6-entry tuple that contains: the parameter name, the parameter type, the current value, the minimum value, the maximum value, and the default value.
Example usage:
print model.getParamInfo('Heuristics')