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.
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.
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.
info: The returned information. The result will contain two entries: the current value of the parameter and the default value.