Updated coarse level solver AMG debug flags

This commit is contained in:
Hrvoje Jasak 2018-05-24 16:19:40 +01:00
parent 5c33f47532
commit c0003d35e6
2 changed files with 8 additions and 0 deletions

View file

@ -231,6 +231,10 @@ void Foam::coarseBlockAMGLevel<Type>::solve
label oldDebug = blockLduMatrix::debug();
if (blockLduMatrix::debug >= 4)
{
blockLduMatrix::debug = 2;
}
else if (blockLduMatrix::debug == 3)
{
blockLduMatrix::debug = 1;
}

View file

@ -205,6 +205,10 @@ void Foam::coarseAmgLevel::solve
label oldDebug = blockLduMatrix::debug();
if (blockLduMatrix::debug >= 4)
{
blockLduMatrix::debug = 2;
}
else if (blockLduMatrix::debug == 3)
{
blockLduMatrix::debug = 1;
}