DivisionMode.hpp
1 #ifndef OPALS_DIVISION_MODE_HPP_INCLUDED
2 #define OPALS_DIVISION_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace DivisionMode
10  {
11  enum Type
12  {
13  irregular , ///< free division division of cells
14  hierarchical , ///< quad-tree division of cells
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif