xref: /petsc/src/mat/impls/aij/seq/aij.h (revision b8a66259d7a908f944e5d80e309fde809de60653)
1*b8a66259SBarry Smith 
2*b8a66259SBarry Smith #include "matimpl.h"
3*b8a66259SBarry Smith #include "math.h"
4*b8a66259SBarry Smith 
5*b8a66259SBarry Smith typedef struct {
6*b8a66259SBarry Smith   int    m,n,nz,           /* rows and columns */
7*b8a66259SBarry Smith          *i,*imax, *ilen,  /* j + i[k]  is start of row k */
8*b8a66259SBarry Smith          *j;               /* ilen is actual lenght of row */
9*b8a66259SBarry Smith   double *a;
10*b8a66259SBarry Smith } Matiaij;
11*b8a66259SBarry Smith 
12*b8a66259SBarry Smith int MatAIJCreate(); /* (int, int, int); */
13*b8a66259SBarry Smith 
14