XSLPaddtolsets
Add sets of standard tolerance values to an SLP problem.
int XPRS_CC XSLPaddtolsets(XSLPprob prob, int ntol, double *tol);
 | 
     prob 
     | 
     The current SLP problem.
     | 
| 
     ntol 
     | 
     The number of tolerance sets to be added.
     | 
| 
     tol 
     | 
     Double array of (
     ntol * 9) items containing the 9 tolerance values for each set in order.
     | 
double tol[18]; for (i=0;i<9;i++) tol[i] = 0.005; tol[9] = 0; for (i=10;i<18;i=i+2) tol[i] = 0.01; for (i=11;i<18;i=i+2) tol[i] = 0.001; XSLPaddtolsets(prob, 2, tol);
| Entry / Bit | Tolerance | XSLP constant | XSLP bit constant | 
|---|---|---|---|
| 0 | Closure tolerance (TC) | XSLP_TOLSET_TC | XSLP_TOLSETBIT_TC | 
| 1 | Absolute delta tolerance (TA) | XSLP_TOLSET_TA | XSLP_TOLSETBIT_TA | 
| 2 | Relative delta tolerance (RA) | XSLP_TOLSET_RA | XSLP_TOLSETBIT_RA | 
| 3 | Absolute coefficient tolerance (TM) | XSLP_TOLSET_TM | XSLP_TOLSETBIT_TM | 
| 4 | Relative coefficient tolerance (RM) | XSLP_TOLSET_RM | XSLP_TOLSETBIT_RM | 
| 5 | Absolute impact tolerance (TI) | XSLP_TOLSET_TI | XSLP_TOLSETBIT_TI | 
| 6 | Relative impact tolerance (RI) | XSLP_TOLSET_RI | XSLP_TOLSETBIT_RI | 
| 7 | Absolute slack tolerance (TS) | XSLP_TOLSET_TS | XSLP_TOLSETBIT_TS | 
| 8 | Relative slack tolerance (RS) | XSLP_TOLSET_RS | XSLP_TOLSETBIT_RS | 
© 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.
 
