Skip to content
Snippets Groups Projects
Commit f12703f8 authored by Markus Blatt's avatar Markus Blatt
Browse files

Pass verbose parameter to communication building method.

[[Imported from SVN: r1432]]
parent a64387dd
No related branches found
No related tags found
No related merge requests found
......@@ -1175,7 +1175,8 @@ namespace Dune
time.reset();
bool ret = buildCommunication(graph, realpart, oocomm, outcomm, redistInf);
bool ret = buildCommunication(graph, realpart, oocomm, outcomm, redistInf,
verbose);
if(verbose && oocomm.communicator().rank()==0)
std::cout<<"Building index sets took "<<time.elapsed()<<std::endl;
time.reset();
......@@ -1406,7 +1407,8 @@ namespace Dune
delete[] part;
oocomm.copyOwnerToAll(setPartition, setPartition);
bool ret = buildCommunication(graph, setPartition, oocomm, outcomm, redistInf);
bool ret = buildCommunication(graph, setPartition, oocomm, outcomm, redistInf,
verbose);
if(verbose) {
oocomm.communicator().barrier();
if(oocomm.communicator().rank()==0)
......
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