DSDP
|
Function pointers that a Schur complement matrix (dense, sparse, parallel dense) must provide. More...
Go to the source code of this file.
Functions | |
int | DSDPSchurMatOpsInitialize (struct DSDPSchurMat_Ops *) |
Initialize function pointers to 0. More... | |
int | DSDPSetSchurMatOps (DSDP, struct DSDPSchurMat_Ops *, void *) |
Set the Schur complement matrix. More... | |
int | DSDPSparsityInSchurMat (DSDP, int, int[], int) |
Identify nonzero elements in a row of the Schur complement. More... | |
Function pointers that a Schur complement matrix (dense, sparse, parallel dense) must provide.
Definition in file dsdpschurmat_impl.h.
int DSDPSchurMatOpsInitialize | ( | struct DSDPSchurMat_Ops * | dops | ) |
Initialize function pointers to 0.
dops | address of a structure of function pointers. |
Definition at line 44 of file dsdpschurmat.c.
Referenced by DSDPSchurMatInitialize().
int DSDPSetSchurMatOps | ( | DSDP | , |
struct DSDPSchurMat_Ops * | , | ||
void * | |||
) |
Set the Schur complement matrix.
dsdp | the solver |
sops | address of a structure with function pointers |
mdata | address of a matrix object The step direction in DSDP is the solution to a set of linear equations. The cones used by DSDP compute the elements of the matrix and the right-hand side vectors. Any matrix that implements the Schur complement matrix interface can be used by DSDP. In addition to factoring a matrix and solving it, this interface also provides matrix assembly routines for the cones. |
Definition at line 602 of file dsdpcops.c.
int DSDPSparsityInSchurMat | ( | DSDP | dsdp, |
int | row, | ||
int | rnnz[], | ||
int | mm | ||
) |
Identify nonzero elements in a row of the Schur complement.
dsdp | solver |
row | corresponding to variable y. |
rnnz | array to be marked nonzero if nonzero. |
mm | dimension of M matrix |
Definition at line 649 of file dsdpschurmat.c.