Report coarse level size at debug level 3 in AMG

This commit is contained in:
Hrvoje Jasak 2017-06-09 00:42:13 +01:00
parent 3be52d07c3
commit cf887cbe5e
3 changed files with 3 additions and 3 deletions

View file

@ -618,7 +618,7 @@ void Foam::BlockMatrixSelection<Type>::calcCoarsening()
reduce(coarsen_, andOp<bool>());
if (blockLduMatrix::debug >= 2)
if (blockLduMatrix::debug >= 3)
{
Pout<< "Coarse level size: " << nCoarseEqns_;

View file

@ -451,7 +451,7 @@ void Foam::clusterAmgPolicy::calcChild()
reduce(coarsen_, andOp<bool>());
if (lduMatrix::debug >= 2)
if (lduMatrix::debug >= 3)
{
// Count solo cells
label nSingleClusters = 0;

View file

@ -311,7 +311,7 @@ void Foam::pamgPolicy::calcChild()
reduce(coarsen_, andOp<bool>());
if (lduMatrix::debug >= 2)
if (lduMatrix::debug >= 3)
{
Pout<< "Coarse level size: " << nCoarseEqns_
<< " nSolo = " << nSolo_;