Result statistics: Fixed computation of scalar values close to zero

This commit is contained in:
Magne Sjaastad 2014-08-20 11:55:11 +02:00
parent 9e4c39627d
commit f61f7f1fd1

View File

@ -40,8 +40,8 @@ void RigStatisticsDataCache::clearAllStatistics()
{
m_minValue = HUGE_VAL;
m_maxValue = -HUGE_VAL;
m_posClosestToZero = -HUGE_VAL;
m_negClosestToZero = HUGE_VAL;
m_posClosestToZero = HUGE_VAL;
m_negClosestToZero = -HUGE_VAL;
m_p10 = HUGE_VAL;
m_p90 = HUGE_VAL;
m_meanValue = HUGE_VAL;