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 +


GRBModel::getGenConstrPoly

Retrieve the data associated with a general constraint of type POLY. Calling this method for a general constraint of a different type leads to an exception. You can query the GenConstrType attribute to determine the type of the general constraint.

Typical usage is to call this routine twice. In the first call, you specify the requested general constraint, with a NULL value for the p argument. The routine returns the length of the p array in plenP. That allows you to make certain that the p array is of sufficient size to hold the result of the second call.

See also addGenConstrPoly for a description of the semantics of this general constraint type.

void getGenConstrPoly ( GRBGenConstr genc,
    GRBVar* xvarP,
    GRBVar* yvarP,
    int* plenP,
    double* p )
    Arguments:

    genc: The general constraint object.

    Any of the following arguments can be NULL.

    xvarP: Pointer to store the <span>$</span>x<span>$</span> variable.

    yvarP: Pointer to store the <span>$</span>y<span>$</span> variable.

    plenP: Pointer to store the array length for p. If <span>$</span>x^d<span>$</span> is the highest power term, then <span>$</span>d+1<span>$</span> will be returned.

    p: The coefficients for polynomial function.