| # | Line 88 | Line 88 | namespace OpenMD{ | |
|---|---|---|
| 88 | static int Length() {return 3;} | |
| 89 | }; | |
| 90 | ||
| 91 | < | template<class T, unsigned int Row, unsigned int Col> |
| 92 | < | class MPITraits< RectMatrix<T, Row, Col> > { |
| 91 | > | template<class T, unsigned int R, unsigned int C> |
| 92 | > | class MPITraits< RectMatrix<T, R, C> > { |
| 93 | public: | |
| 94 | static MPI::Datatype Type() { return MPITraits<T>::Type(); } | |
| 95 | < | static int Length() {return Row * Col;} |
| 95 | > | static int Length() {return R * C;} |
| 96 | }; | |
| 97 | ||
| 98 | template<class T> | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |