GRBLinExpr.AddTerms()

Add new terms into a linear expression.

void AddTerms ( double[] coeffs,
    GRBVar[] vars )
    Add a list of terms into a linear expression. Note that the lengths of the two argument arrays must be equal.

    Arguments:

    coeffs: Coefficients for new terms.

    vars: Variables for new terms.

void AddTerms ( double[] coeffs,
    GRBVar[] vars,
    int start,
    int len )
    Add new terms into a linear expression. This signature allows you to use arrays to hold the coefficients and variables that describe the terms in an array without being forced to add a term for each entry in the array. The start and len arguments allow you to specify which terms to add.

    Arguments:

    coeffs: Coefficients for new terms.

    vars: Variables for new terms.

    start: The first term in the list to add.

    len: The number of terms to add.