mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Result statistics: Fixed computation of scalar values close to zero
This commit is contained in:
@@ -40,8 +40,8 @@ void RigStatisticsDataCache::clearAllStatistics()
|
|||||||
{
|
{
|
||||||
m_minValue = HUGE_VAL;
|
m_minValue = HUGE_VAL;
|
||||||
m_maxValue = -HUGE_VAL;
|
m_maxValue = -HUGE_VAL;
|
||||||
m_posClosestToZero = -HUGE_VAL;
|
m_posClosestToZero = HUGE_VAL;
|
||||||
m_negClosestToZero = HUGE_VAL;
|
m_negClosestToZero = -HUGE_VAL;
|
||||||
m_p10 = HUGE_VAL;
|
m_p10 = HUGE_VAL;
|
||||||
m_p90 = HUGE_VAL;
|
m_p90 = HUGE_VAL;
|
||||||
m_meanValue = HUGE_VAL;
|
m_meanValue = HUGE_VAL;
|
||||||
|
|||||||
Reference in New Issue
Block a user