Add new terms into a linear expression.
void | AddTerms ( | double[] | coeffs, |
GRBVar[] | vars ) |
Arguments:
coeffs: Coefficients for new terms.
vars: Variables for new terms.
void | AddTerms ( | double[] | coeffs, |
GRBVar[] | vars, | ||
int | start, | ||
int | len ) |
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.