mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Release 2023.06
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
project(ResultStatisticsCache)
|
||||
|
||||
include_directories(${LibCore_SOURCE_DIR})
|
||||
|
||||
add_library(
|
||||
${PROJECT_NAME}
|
||||
RigStatisticsCalculator.h RigStatisticsCalculator.cpp
|
||||
@@ -11,6 +9,6 @@ add_library(
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} LibCore)
|
||||
target_link_libraries(${PROJECT_NAME} LibCore ApplicationLibCode)
|
||||
|
||||
source_group("" FILES ${PROJECT_FILES})
|
||||
|
||||
@@ -293,7 +293,7 @@ void RigHistogramCalculator::addValue( double value )
|
||||
|
||||
size_t index = 0;
|
||||
|
||||
if ( m_maxIndex > 0 ) index = ( size_t )( m_maxIndex * ( value - m_min ) / m_range );
|
||||
if ( m_maxIndex > 0 ) index = (size_t)( m_maxIndex * ( value - m_min ) / m_range );
|
||||
|
||||
if ( index < m_histogram->size() ) // Just clip to the max min range (-index will overflow to positive )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user