![]() |
SuperSCS
1.3.2
|
The sparse matrix A of the conic optimization problem. More...
#include <amatrix.h>
Data Fields | |
| scs_float * | x |
Values of A. More... | |
| scs_int * | i |
| The row-index of the matrix ( \(J\)). More... | |
| scs_int * | p |
| Array of column pointers of A in CSC format ( \(I\)). More... | |
| scs_int | m |
| Number of rows ( \(m\)). More... | |
| scs_int | n |
| Number of columns ( \(n\)). More... | |
The sparse matrix A of the conic optimization problem.
The data are stored in CSC format.
| scs_int* i |
The row-index of the matrix ( \(J\)).
An array of length equal to the number of nonzero elements of A.
| scs_int m |
Number of rows ( \(m\)).
| scs_int n |
Number of columns ( \(n\)).
| scs_int* p |
Array of column pointers of A in CSC format ( \(I\)).
The length of A->p is equal to A->n + 1.
| scs_float* x |
Values of A.
1.8.6