Skip to content
Snippets Groups Projects
Commit 0ca82c73 authored by Robert K's avatar Robert K
Browse files

avoid output for dim==2

parent 7a080856
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,8 @@ namespace Dune
{
static GridPtr< Grid > create( const std::string& filename )
{
std::cout << "Reading the grid onto a single processor" << std::endl;
if( Grid::dimension > 2 )
std::cout << "Reading the grid onto a single processor" << std::endl;
return GridPtr< Grid >( filename );
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment