Feature ILUCp and BlockILUCp preconditioning, extended addr update and clean-up
This commit is contained in:
parent
c4be709e7a
commit
067cc95474
2 changed files with 8 additions and 2 deletions
|
@ -81,7 +81,10 @@ Foam::coarseBlockAmgLevel<Type>::coarseBlockAmgLevel
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
Ax_()
|
Ax_()
|
||||||
{}
|
{
|
||||||
|
Info<< "Coarse AMG level check" << endl;
|
||||||
|
matrixPtr_->check();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||||
|
|
|
@ -76,7 +76,10 @@ Foam::fineBlockAmgLevel<Type>::fineBlockAmgLevel
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
Ax_()
|
Ax_()
|
||||||
{}
|
{
|
||||||
|
Info<< "Fine AMG level check" << endl;
|
||||||
|
matrix_.check();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
Reference in a new issue