Try our new documentation site (beta).
GRBEnv.getParamInfo()
Obtain information about a parameter.
void | getParamInfo ( | GRB.DoubleParam | param, |
double[] | info ) |
-
Obtain detailed information about a double parameter.
Arguments:
param: The parameter of interest. Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.
info: The returned information. The result will contain four entries: the current value of the parameter, the minimum allowed value, the maximum allowed value, and the default value.
void | getParamInfo ( | GRB.IntParam | param, |
int[] | info ) |
-
Obtain detailed information about an integer parameter.
Arguments:
param: The parameter of interest. Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.
info: The returned information. The result will contain four entries: the current value of the parameter, the minimum allowed value, the maximum allowed value, and the default value.
void | getParamInfo ( | GRB.StringParam | param, |
String[] | info ) |
-
Obtain detailed information about a string parameter.
Arguments:
param: The parameter of interest. Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.
info: The returned information. The result will contain two entries: the current value of the parameter and the default value.