mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Make localIndexMap_ a non-empty list of indices of interior elements.
Judging from ParallelDebugOutput.hh this is what is should be. Before this commit it was empty as it had space reserved but never any entries pushed (they were inserted with operator[]).
This commit is contained in:
parent
4418685056
commit
9d7720ef34
@ -250,7 +250,7 @@ namespace Ewoms
|
||||
// only store interior element for collection
|
||||
if( element.partitionType() == Dune :: InteriorEntity )
|
||||
{
|
||||
localIndexMap_[elemIdx] = elemIdx;
|
||||
localIndexMap_.push_back( elemIdx );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user