XPRSloadqp, XPRSloadqp64
XPRSloadqp, XPRSloadqp64 |
int XPRS_CC XPRSloadqp(XPRSprob prob, const char *probname, int ncol, int nrow, const char qrtype[], const double rhs[], const double range[], const double obj[], const int mstart[], const int mnel[], const int mrwind[], const double dmatval[], const double dlb[], const double dub[], int nqtr, const int mqc1[], const int mqc2[], const double dqe[]);
int XPRS_CC XPRSloadqp64(XPRSprob prob, const char *probname, int ncol, int nrow, const char qrtype[], const double rhs[], const double range[], const double obj[], const XPRSint64 mstart[], const int mnel[], const int mrwind[], const double dmatval[], const double dlb[], const double dub[], XPRSint64 nqtr, const int mqc1[], const int mqc2[], const double dqe[]);
prob
|
The current problem.
|
||||||||||
probname
|
A string of up to
MAXPROBNAMELENGTH characters containing a names for the problem.
|
||||||||||
ncol
|
Number of structural columns in the matrix.
|
||||||||||
nrow
|
Number of rows in the matrix (not including the objective row). Objective coefficients must be supplied in the
obj array, and the objective function should not be included in any of the other arrays.
|
||||||||||
qrtype
|
Character array of length
nrow containing the row types:
|
||||||||||
rhs
|
Double array of length
nrow containing the right hand side coefficients of the rows. The right hand side value for a range row gives the
upper bound on the row.
|
||||||||||
range
|
Double array of length
nrow containing the range values for range rows. Values for all other rows will be ignored. May be
NULL if there are no ranged constraints. The lower bound on a range row is the right hand side value minus the range value. The sign of the range value is ignored - the absolute value is used in all cases.
|
||||||||||
obj
|
Double array of length
ncol containing the objective function coefficients.
|
||||||||||
mstart
|
Integer array containing the offsets in the
mrwind and
dmatval arrays of the start of the elements for each column. This array is of length
ncol or, if
mnel is
NULL, length
ncol+1. If
mnel is
NULL the extra entry of
mstart,
mstart[ncol], contains the position in the
mrwind and
dmatval arrays at which an extra column would start, if it were present. In C, this value is also the length of the
mrwind and
dmatval arrays.
|
||||||||||
mnel
|
Integer array of length
ncol containing the number of nonzero elements in each column. May be
NULL if all elements are contiguous and
mstart[ncol] contains the offset where the elements for column
ncol+1 would start. This array is not required if the non-zero coefficients in the
mrwind and
dmatval arrays are continuous, and the
mstart array has
ncol+1 entries as described above. It may be
NULL if not required.
|
||||||||||
mrwind
|
Integer array containing the row indices for the nonzero elements in each column. If the indices are input contiguously, with the columns in ascending order, the length of the
mrwind is
mstart[ncol-1]+mnel[ncol-1] or, if
mnel is
NULL,
mstart[ncol].
|
||||||||||
dmatval
|
Double array containing the nonzero element values; length as for
mrwind.
|
||||||||||
dlb
|
Double array of length
ncol containing the lower bounds on the columns. Use
XPRS_MINUSINFINITY to represent a lower bound of minus infinity.
|
||||||||||
dub
|
Double array of length
ncol containing the upper bounds on the columns. Use
XPRS_PLUSINFINITY to represent an upper bound of plus infinity.
|
||||||||||
nqtr
|
Number of quadratic terms.
|
||||||||||
mqc1
|
Integer array of size
nqtr containing the column index of the first variable in each quadratic term.
|
||||||||||
mqc2
|
Integer array of size
nqtr containing the column index of the second variable in each quadratic term.
|
||||||||||
dqe
|
Double array of size
nqtr containing the quadratic coefficients.
|
Number of extra columns to be allowed for.
|
|
Number of extra matrix elements to be allowed for.
|
|
Number of extra elements to allow for in presolve.
|
|
Number of extra rows to be allowed for.
|
|
Status for nonbinding rows.
|
|
Type of scaling.
|
Double
Tolerance on matrix elements.
|
int nrow = 1, ncol = 2, nquad = 3; int mstart[] = {0, 1, 2}; int mrwind[] = {0, 0}; double dmatval[] = {1, 1}; double rhs[] = {1.9}; char qrtype[] = {'L'}; double lbound[] = {0, 0}; double ubound[] = {XPRS_PLUSINFINITY,XPRS_PLUSINFINITY}; double obj[] = {-6, 0}; int mqc1[] = {0, 0, 1}; int mqc2[] = {0, 1, 1}; double dquad[] = {4, -2, 4}; double *primal, *dual; primal = malloc(ncol*sizeof(double)); dual = malloc(nrow*sizeof(double)); ... XPRSloadqp(prob, "example", ncol, nrow, qrtype, rhs, NULL, obj, mstart, NULL, mrwind, dmatval, lbound, ubound, nquad, mqc1, mqc2, dquad)
© 2001-2020 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.