Commit 81d578ce authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Small change in MeshReaderTest

parent 710918d5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -122,12 +122,13 @@ public:
      std::cout << "NOTE: there is no real test, but the file was loaded fine..." << std::endl;

      std::cout << "vertices: " << mesh.template getEntitiesCount< 0 >() << std::endl;
      std::cout << "faces: " << mesh.template getEntitiesCount< MeshType::getMeshDimension() - 1 >() << std::endl;
      std::cout << "cells: " << mesh.template getEntitiesCount< MeshType::getMeshDimension() >() << std::endl;

      std::cout << "post-init\t";
      Debugging::printMemoryUsage();

      mesh.save( "mesh-test.tnl" );
//      mesh.save( "mesh-test.tnl" );

      return true;
   }