sparse/*.c, rename `eMatrix' --> `Matrix' (prototypes)
This commit is contained in:
parent
f30796a7e6
commit
7ed0b5cef6
|
|
@ -36,8 +36,8 @@ void SMPgetError( SMPmatrix *, int *, int *);
|
|||
int SMPcProdDiag( SMPmatrix *, SPcomplex *, int *);
|
||||
int SMPcDProd(SMPmatrix *Matrix, SPcomplex *pMantissa, int *pExponent);
|
||||
SMPelement * SMPfindElt( SMPmatrix *, int , int , int );
|
||||
int SMPcZeroCol(SMPmatrix *eMatrix, int Col);
|
||||
int SMPcAddCol(SMPmatrix *eMatrix, int Accum_Col, int Addend_Col);
|
||||
int SMPzeroRow(SMPmatrix *eMatrix, int Row);
|
||||
int SMPcZeroCol(SMPmatrix *Matrix, int Col);
|
||||
int SMPcAddCol(SMPmatrix *Matrix, int Accum_Col, int Addend_Col);
|
||||
int SMPzeroRow(SMPmatrix *Matrix, int Row);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -261,7 +261,7 @@ extern int spFileMatrix( MatrixPtr, char *, char *, int, int, int );
|
|||
extern int spFileStats( MatrixPtr, char *, char * );
|
||||
extern int spFillinCount( MatrixPtr );
|
||||
extern int spGetAdmittance( MatrixPtr, int, int, struct spTemplate* );
|
||||
extern spREAL *spFindElement(MatrixPtr eMatrix, int Row, int Col );
|
||||
extern spREAL *spFindElement(MatrixPtr Matrix, int Row, int Col );
|
||||
extern spREAL *spGetElement(MatrixPtr, int, int );
|
||||
extern void *spGetInitInfo( spREAL* );
|
||||
extern int spGetOnes( MatrixPtr, int, int, int, struct spTemplate* );
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ extern double scalbn(double, int);
|
|||
extern double logb(double);
|
||||
#endif
|
||||
|
||||
static void LoadGmin(SMPmatrix *eMatrix, double Gmin);
|
||||
static void LoadGmin(SMPmatrix *Matrix, double Gmin);
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue