Bugfix: sortedToc in addressing cannot be a reference. HJ
This commit is contained in:
parent
2f92fb6c8a
commit
f646502011
1 changed files with 12 additions and 1 deletions
|
@ -1043,7 +1043,7 @@ Foam::BlockMatrixSelection<Type>::restrictMatrix() const
|
||||||
|
|
||||||
forAll (coarseNbrsSets, rowI)
|
forAll (coarseNbrsSets, rowI)
|
||||||
{
|
{
|
||||||
const labelList& curNbrs = coarseNbrsSets[rowI].sortedToc();
|
const labelList curNbrs = coarseNbrsSets[rowI].sortedToc();
|
||||||
|
|
||||||
forAll (curNbrs, nbrI)
|
forAll (curNbrs, nbrI)
|
||||||
{
|
{
|
||||||
|
@ -1262,6 +1262,17 @@ Foam::BlockMatrixSelection<Type>::restrictMatrix() const
|
||||||
{
|
{
|
||||||
coeffLabel[lowerCoarseAddr[losortCoarseAddr[indexC]]] =
|
coeffLabel[lowerCoarseAddr[losortCoarseAddr[indexC]]] =
|
||||||
losortCoarseAddr[indexC];
|
losortCoarseAddr[indexC];
|
||||||
|
// Stupid check
|
||||||
|
if (upperCoarseAddr[losortCoarseAddr[indexC]] != ir)
|
||||||
|
{
|
||||||
|
FatalErrorIn("STUPID CHECK")
|
||||||
|
<< "FAILED: ir, upper, lower coeff: "
|
||||||
|
<< ir << " "
|
||||||
|
<< upperCoarseAddr[losortCoarseAddr[indexC]] << " "
|
||||||
|
<< lowerCoarseAddr[losortCoarseAddr[indexC]] << " "
|
||||||
|
<< losortCoarseAddr[indexC]
|
||||||
|
<< abort(FatalError);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compressed row format, get indices of coeffsR in row ir
|
// Compressed row format, get indices of coeffsR in row ir
|
||||||
|
|
Reference in a new issue