Commit 7bda89a5 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Removed forgotten tests from Grid2D.h

parent c71543f8
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -41,21 +41,13 @@ class Grid< 2, Real, Device, Index > : public Object
   static constexpr int getMeshDimension() { return 2; };

   template< int EntityDimension,
             typename Config = GridEntityNoStencilStorage >//CrossStencilStorage< 1 > >
             typename Config = GridEntityCrossStencilStorage< 1 > >
   using EntityType = GridEntity< ThisType, EntityDimension, Config >;
 
   typedef EntityType< getMeshDimension(), GridEntityCrossStencilStorage< 1 > > Cell;
   typedef EntityType< getMeshDimension() - 1, GridEntityNoStencilStorage > Face;
   typedef EntityType< 0 > Vertex;
   

   // TODO: remove this
   //template< int EntityDimension, 
   //          typename Config = GridEntityNoStencilStorage >//CrossStencilStorage< 1 > >
   //using TestEntityType = tnlTestGridEntity< ThisType, EntityDimension, Config >;
   //typedef TestEntityType< getMeshDimension(), GridEntityCrossStencilStorage< 1 > > TestCell;
   /////
   
   Grid();

   static String getType();