XSLPgetrowwt
XSLPgetrowwt |
Purpose
Get the initial penalty error weight for a row
Synopsis
int XSLP_CC XSLPgetrowwt(XSLPprob Prob, int RowIndex, double *Value)
Arguments
Prob
|
The current SLP problem.
|
RowIndex
|
The index of the row whose weight is to be retrieved.
|
Value
|
Address of a double precision variable to receive the value of the weight.
|
Example
The following example gets the initial weight of row number 2.
double Value; XSLPgetrowwt(Prob,2,&Value)
Further information
The initial row weight is used only when the augmented structure is created. After that, the current weighting can be accessed using XSLPgetrowinfo.
Related topics