Report coarse level size at debug level 3 in AMG
This commit is contained in:
parent
3be52d07c3
commit
cf887cbe5e
3 changed files with 3 additions and 3 deletions
|
@ -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_;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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_;
|
||||
|
|
Reference in a new issue