Skip to content

Commit

Permalink
Do not tag calculator results to be stored in cache
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Aug 11, 2023
1 parent 45be0e6 commit 503180b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ApplicationLibCode/ProjectDataModel/RimGridCalculation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ bool RimGridCalculation::calculate()

if ( !eclipseCase->results( porosityModel )->ensureKnownResultLoaded( resAddr ) )
{
eclipseCase->results( porosityModel )->createResultEntry( resAddr, true );
bool needsToBeStored = false;
eclipseCase->results( porosityModel )->createResultEntry( resAddr, needsToBeStored );
}

eclipseCase->results( porosityModel )->clearScalarResult( resAddr );
Expand Down

0 comments on commit 503180b

Please sign in to comment.