XPRSgetgencons, XPRSgetgencons64
int XPRS_CC XPRSgetgencons(XPRSprob prob, int contype[], int resultant[], int colstart[], int colind[], int maxcols, int *p_ncols, int valstart[], double val[], int maxvals, int *p_nvals, int first, int last);
 int XPRS_CC XPRSgetgencons64(XPRSprob prob, int contype[], int resultant[], XPRSint64 colstart[], int colind[], XPRSint64 maxcols, XPRSint64 *p_ncols, XPRSint64 valstart[], double val[], XPRSint64 maxvals, XPRSint64 *p_nvals, int first, int last);
 | 
     prob 
     | 
     The current problem.
     | ||||||||||
| 
     contype 
     | 
     An integer array of length
     last-first+1 which will be filled with the types of the general constraints:
     
 
     May be
     NULL if not required.
     | ||||||||||
| 
     resultant 
     | 
     Integer array which will be filled with the indices of the output variables
     y. It must be of length
     last-first+1. May be
     NULL if not required.
     | ||||||||||
| 
     colstart 
     | 
     Integer array of length
     last-first+2 which will be filled with the start index of each general constraint in the
     colind array. May be
     NULL if not required.
     | ||||||||||
| 
     colind 
     | 
     Integer array which will be filled with the indices of the input variables
     xi. May be
     NULL if not required.
     | ||||||||||
| 
     maxcols 
     | 
     Maximum number of input columns to be retrieved.
     | ||||||||||
| 
     p_ncols 
     | 
     Pointer to return the number of input columns in the
     colind array. If the number of input columns is greater than
     maxcols, then only
     maxcols elements will be returned. May be
     NULL if not required.
     | ||||||||||
| 
     valstart 
     | 
     Integer array of length
     last-first+2 which will be filled with the start index of each general constraint in the
     val array. May be
     NULL if not required.
     | ||||||||||
| 
     val 
     | 
     Integer array which will be filled with the constant values
     ci. May be
     NULL if not required.
     | ||||||||||
| 
     maxvals 
     | 
     Maximum number of constant values to be retrieved.
     | ||||||||||
| 
     p_nvals 
     | 
     Pointer to return the number of constant values in the
     val array. If the number of constant values is greater than
     maxvals, then only
     maxvals elements will be returned.May be
     NULL if not required.
     | ||||||||||
| 
     first 
     | 
     First general constraint in the range.
     | ||||||||||
| 
     last 
     | 
     Last general constraint in the range.
     | 
int ngencons; int *contype; int *resultant; int *colstart; int *colind; int maxcols; int ncols; int *valstart; int *val; int maxvals; int nvals; ... XPRSgetdblattrib(prob, XPRS_GENCONS, &ngencons); XPRSgetgencons(prob, NULL, NULL, NULL, NULL, 0, &maxcols, NULL, NULL, 0, &maxvals, 0, ngencons - 1); contype = (int*) malloc(ngencons*sizeof(int)); resultant = (int*) malloc(ngencons*sizeof(int)); colstart = (int*) malloc((ngencons+1)*sizeof(int)); colind = (int*) malloc(maxcols*sizeof(int)); valstart = (int*) malloc((ngencons+1)*sizeof(int)); val = (double*) malloc(maxvals*sizeof(double)); XPRSgetgencons(prob, contype, resultant, colstart, colind, maxcols, &ncols, valstart, val, maxvals, &nvals, 0, ngencons - 1); ...
© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.
 
