1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-25 13:15:55 +01:00

Format, NAMESPACE

This commit is contained in:
paboyle 2018-01-12 23:47:24 +00:00
parent 59b31b6bb8
commit 0b8a88978b
4 changed files with 523 additions and 523 deletions

View File

@ -31,7 +31,7 @@
#define GRID_CARTESIAN_BASE_H #define GRID_CARTESIAN_BASE_H
namespace Grid{ NAMESPACE_BEGIN(Grid);
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// Commicator provides information on the processor grid // Commicator provides information on the processor grid
@ -284,6 +284,5 @@ public:
} }
}; };
NAMESPACE_END(Grid);
}
#endif #endif

View File

@ -28,7 +28,7 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
#ifndef GRID_CARTESIAN_FULL_H #ifndef GRID_CARTESIAN_FULL_H
#define GRID_CARTESIAN_FULL_H #define GRID_CARTESIAN_FULL_H
namespace Grid{ NAMESPACE_BEGIN(Grid);
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////
// Grid Support. // Grid Support.
@ -167,5 +167,6 @@ public:
} }
}; };
}; };
}
NAMESPACE_END(Grid);
#endif #endif

View File

@ -30,7 +30,7 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
#define GRID_CARTESIAN_RED_BLACK_H #define GRID_CARTESIAN_RED_BLACK_H
namespace Grid { NAMESPACE_BEGIN(Grid);
static const int CbRed =0; static const int CbRed =0;
static const int CbBlack=1; static const int CbBlack=1;
@ -317,5 +317,5 @@ public:
return idx; return idx;
} }
}; };
} NAMESPACE_END(Grid);
#endif #endif