Variables y are numbered 1 through m.
#include dsdp5.h
0 | if successful |
Functions | |
int | BConeAllocateBounds (BCone bcone, int nnz) |
Set a surplus variable in constraint in (P). | |
int | BConeCopyX (BCone bcone, double xl[], double xu[], int m) |
Copy the variables into arrays. | |
int | BConeSetLowerBound (BCone bcone, int vari, double lbound) |
Set a lower bound on a variable y. | |
int | BConeSetPSlackVariable (BCone bcone, int vari) |
Set a slack variable to a constraint in (P). | |
int | BConeSetPSurplusVariable (BCone bcone, int vari) |
Set a surplus variable in constraint in (P). | |
int | BConeSetUpperBound (BCone bcone, int vari, double ubound) |
Set an upper bound on a variable y. | |
int | DSDPCreateBCone (DSDP dsdp, BCone *dspcone) |
Create a new cone that represents bounds on the y variables. |
|
Set a surplus variable in constraint in (P).
Definition at line 645 of file dbounds.c. Referenced by mexFunction(), MinColoring(), and ReadSDPAFile(). |
|
Copy the variables into arrays.
|
|
Set a lower bound on a variable y.
Definition at line 566 of file dbounds.c. Referenced by BConeSetPSurplusVariable(), mexFunction(), and ReadSDPAFile(). |
|
Set a slack variable to a constraint in (P).
This command is equivalent to setting an upper bound on variable $y_i$ to zero. Definition at line 607 of file dbounds.c. Referenced by MinColoring(). |
|
Set a surplus variable in constraint in (P).
|
|
Set an upper bound on a variable y.
Definition at line 583 of file dbounds.c. Referenced by BConeSetPSlackVariable(), mexFunction(), and ReadSDPAFile(). |
|
Create a new cone that represents bounds on the y variables.
DSDP dsdp; BCone bcone; int xl[3],xu[3]; DSDPCreate(3,&dsdp); DSDPCreateBCone(dsdp,&bcone); BConeSetLowerBound(bcone,1,0.0); BConeSetLowerBound(bcone,1,10.0); ... DSDPComputeX(dsdp); BConeCopyX(bcone,xl,xu,3); printf("The sensitivity of the solution to lower bound is %4.4f\n",xl[0]); Definition at line 467 of file dbounds.c. Referenced by mexFunction(), MinColoring(), and ReadSDPAFile(). |