Changeset ac6d04 for src/comm/mpi/datatypes_local.hpp
- Timestamp:
- Apr 10, 2012, 1:55:49 PM (14 years ago)
- Children:
- a40eea
- Parents:
- d24c2f
- File:
-
- 1 edited
-
src/comm/mpi/datatypes_local.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/comm/mpi/datatypes_local.hpp
rd24c2f rac6d04 11 11 class Grid; 12 12 13 namespace Particle 14 { 15 class LinkedCellList; 16 } 17 13 18 namespace MPI 14 19 { … … 17 22 { 18 23 public: 24 DatatypesLocal(const Grid& grid, const MPI_Comm& comm) 25 { 26 InitDatatypesLocal(grid, comm); 27 } 19 28 20 DatatypesLocal(const Grid& grid, const MPI_Comm& comm); 29 DatatypesLocal(const VMG::Particle::LinkedCellList& grid, const MPI_Comm& comm) 30 { 31 InitDatatypesLocal(grid, comm); 32 } 33 21 34 ~DatatypesLocal() {} 22 35 … … 29 42 private: 30 43 std::vector<Datatype> halo, nb; 44 45 template <class T> 46 void InitDatatypesLocal(const T& grid, const MPI_Comm& comm); 31 47 }; 32 48
Note:
See TracChangeset
for help on using the changeset viewer.
