Cookie Settings

Try our new documentation site (beta).

Filter Content By
Version
Table of contents
Filter by Language
C API Details
C++ API Details
GRBModel +
Java API Details
GRBModel +
.NET API Details
GRBModel +
Python API Details
Model +
Attributes
Parameters
Parameter Descriptions +


GRBEnv::getParamInfo()

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. Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.

    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. Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.

    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. Please consult the parameter section for a complete list of Gurobi parameters, including descriptions of their purposes and their minimum, maximum, and default values.

    valP: The current value of the parameter.

    defP: The default value of the parameter.