Obtain information about a parameter.
void | getParamInfo ( | GRB_DoubleParam | param, |
double* | valP, | ||
double* | minP, | ||
double* | maxP, | ||
double* | *defP ) |
Obtain detailed information about a double parameter.
Arguments:
param: The parameter of interest.
valP: The current value of the parameter.
minP: The minimum allowed value of the parameter.
maxP: The maximum allowed value of the parameter.
defP: The default value of the parameter.
void | getParamInfo ( | GRB_IntParam | param, |
int* | valP, | ||
int* | minP, | ||
int* | maxP, | ||
int* | defP ) |
Obtain detailed information about an integer parameter.
Arguments:
param: The parameter of interest.
valP: The current value of the parameter.
minP: The minimum allowed value of the parameter.
maxP: The maximum allowed value of the parameter.
defP: The default value of the parameter.
void | getParamInfo ( | GRB_StringParam | param, |
string* | valP, | ||
string* | defP ) |
Obtain detailed information about a string parameter.
Arguments:
param: The parameter of interest.
valP: The current value of the parameter.
defP: The default value of the parameter.