Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 78fbe027 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Add missing declaration and fix indentation in some places

parent 41a9cf55
No related branches found
No related tags found
1 merge request!5Hotfix/updates from pastix
......@@ -132,6 +132,8 @@ void spmIntSort1Asc1( void * const pbase, const spm_int_t n );
void spmIntSort2Asc1( void * const pbase, const spm_int_t n );
void spmIntSort2Asc2( void * const pbase, const spm_int_t n );
void spmIntMSortIntAsc(void ** const pbase, const spm_int_t n);
/**
* @}
* @name SPM IO subroutines
......
......@@ -111,6 +111,5 @@ spm_cleanenv( char *str ) {
#endif
#endif /* _spm_common_h_ */
......@@ -238,9 +238,6 @@ void spmIntSort3Asc1(void *const pbase, const spm_int_t n);
*
*******************************************************************************
*/
/* Declare here for now, because unused */
void spmIntMSortIntAsc(void ** const pbase, const spm_int_t n);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#define INTSORTNAME spmIntMSortIntAsc
#define INTSORTSIZE(x) (sizeof (spm_int_t))
......
......@@ -52,7 +52,7 @@ double z_spmNorm( int ntype, const spmatrix_t *spm );
/**
* Extra routines
*/
void z_spmSort( spmatrix_t *spm );
void z_spmSort( spmatrix_t *spm );
spm_int_t z_spmMergeDuplicate( spmatrix_t *spm );
spm_int_t z_spmSymmetrize( spmatrix_t *spm );
......@@ -66,8 +66,8 @@ void z_spmDensePrint( FILE *f, spm_int_t m, spm_int_t n, const spm_complex64_t *
void z_spmPrint( FILE *f, const spmatrix_t *spm );
spmatrix_t *z_spmExpand(const spmatrix_t *spm);
void z_spmDofExtend(spmatrix_t *spm);
void z_spmScal( const double alpha, spmatrix_t *spm );
void z_spmDofExtend(spmatrix_t *spm);
void z_spmScal( const double alpha, spmatrix_t *spm );
#endif /* _z_spm_h_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment