XSLPsetcbconstruct, XPRSsetcbslpconstruct
int XPRS_CC XSLPsetcbconstruct(XSLPprob prob, int (XPRS_CC *construct) (XSLPprob cbprob, void *cbdata), void *data);
 | 
     prob 
     | 
     The current SLP problem.
     | 
| 
     construct 
     | 
     The function to be called during problem augmentation.
     construct returns an integer value. See below for an explanation of the values.
     | 
| 
     cbprob 
     | 
     The problem passed to the callback function.
     | 
| 
     cbdata 
     | 
     The user-defined object passed as
     data to
     XSLPsetcbconstruct.
     | 
| 
     data 
     | 
     Address of a user-defined object, which can be used for any purpose by the function.
     data is passed to
     construct as
     cbdata.
     | 
double *cValue; cValue = NULL; XSLPsetcbconstruct(prob, CBConstruct, &cValue);
int XPRS_CC CBConstruct(XSLPprob MyProb, void *Obj) {
  double *cValue;
  int i, n;
/* if data is NULL, this is first-time entry */
  if (*(void**)Obj == NULL) {
    XSLPgetintattrib(MyProb,XPRS_COLS,&n);
    cValue = malloc(n*sizeof(double));
/* ... initialize with values (not shown here) and then ... */
    for (i=0;i<n;i++)
/* store into SLP structures */
      XSLPchgvar(MyProb, i, NULL, NULL, NULL, NULL,
                 NULL, NULL, &cValue[i], NULL, NULL, NULL,
                 NULL);
/* set data non-null to indicate we have processed data */
    *(void**)Obj = cValue;
    return -1;
  }
  else {
/* free memory, clear marker and continue */
    free(*(void**)Obj);
    *(void**)Obj = NULL;
  }
  return 0;
}
- 0
- Normal return: augmentation continues
- -1
- Return to recalculate matrix values
- -2
- Return to recalculate row weights and matrix entries
- other
- Error return: augmentation terminates, XSLPconstruct terminates with a nonzero error code.
© 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.
 
