Mentions légales du service

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

Fix issue with defines of header files

parent 0a499aa2
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@
* @date 2011-11-11
*
**/
#ifndef _LAPLACIAN_H_
#define _LAPLACIAN_H_
#ifndef _laplacian_h_
#define _laplacian_h_
void z_spmLaplacian_7points( pastix_spm_t *spm, pastix_int_t dim1, pastix_int_t dim2, pastix_int_t dim3, pastix_fixdbl_t alpha, pastix_fixdbl_t beta );
void c_spmLaplacian_7points( pastix_spm_t *spm, pastix_int_t dim1, pastix_int_t dim2, pastix_int_t dim3, pastix_fixdbl_t alpha, pastix_fixdbl_t beta );
......@@ -30,4 +30,4 @@ void d_spmExtendedLaplacian3D( pastix_spm_t *spm, pastix_int_t dim1, pastix_int_
void s_spmExtendedLaplacian3D( pastix_spm_t *spm, pastix_int_t dim1, pastix_int_t dim2, pastix_int_t dim3 );
void p_spmExtendedLaplacian3D( pastix_spm_t *spm, pastix_int_t dim1, pastix_int_t dim2, pastix_int_t dim3 );
#endif /* _LAPLACIAN_H_ */
#endif /* _laplacian_h_ */
......@@ -24,8 +24,8 @@
* matrices, as well as norms computations and converter tools.
*
**/
#ifndef _SPM_H_
#define _SPM_H_
#ifndef _spm_h_
#define _spm_h_
#include "pastix/api.h"
......@@ -228,4 +228,4 @@ static inline void s_spmPrintElt( FILE *f, pastix_int_t i, pastix_int_t j, float
/**
* @}
*/
#endif /* _SPM_H_ */
#endif /* _spm_h_ */
......@@ -13,8 +13,8 @@
* @date 2011-11-11
*
**/
#ifndef _SPM_DRIVER_H_
#define _SPM_DRIVER_H_
#ifndef _spm_drivers_h_
#define _spm_drivers_h_
#include "spm.h"
......@@ -33,4 +33,4 @@ int readCSCD ( const char *filename, pastix_spm_t *spm, void **rhs, MPI_Comm pas
int genLaplacian( const char *filename, pastix_spm_t *spm );
int genExtendedLaplacian( const char *filename, pastix_spm_t *spm );
#endif /* _SPM_DRIVER_H_ */
#endif /* _spm_drivers_h_ */
......@@ -17,8 +17,8 @@
* @precisions normal z -> c d s p
*
**/
#ifndef _z_spm_H_
#define _z_spm_H_
#ifndef _z_spm_h_
#define _z_spm_h_
/**
* Integer routines
......@@ -68,4 +68,4 @@ void z_spmDofExtend(pastix_spm_t *spm);
void z_spmScal( const pastix_complex64_t alpha, pastix_spm_t *spm );
#endif /* _z_spm_H_ */
#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