mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix depth range for tracks with no data, bump version
This commit is contained in:
parent
3b67719972
commit
ba8587d6ae
@ -2210,6 +2210,11 @@ std::pair<double, double> RimWellLogTrack::adjustXRange( double minValue, double
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::pair<double, double> RimWellLogTrack::extendMinMaxRange( double minValue, double maxValue, double factor )
|
||||
{
|
||||
if ( minValue == std::numeric_limits<double>::infinity() || maxValue == std::numeric_limits<double>::infinity() )
|
||||
{
|
||||
return { minValue, maxValue };
|
||||
}
|
||||
|
||||
auto modifiedMin = minValue;
|
||||
auto modifiedMax = maxValue;
|
||||
|
||||
|
@ -11,7 +11,7 @@ set(RESINSIGHT_VERSION_TEXT "-dev")
|
||||
# Must be unique and increasing within one combination of major/minor/patch version
|
||||
# The uniqueness of this text is independent of RESINSIGHT_VERSION_TEXT
|
||||
# Format of text must be ".xx"
|
||||
set(RESINSIGHT_DEV_VERSION ".04")
|
||||
set(RESINSIGHT_DEV_VERSION ".05")
|
||||
|
||||
# https://github.com/CRAVA/crava/tree/master/libs/nrlib
|
||||
set(NRLIB_GITHUB_SHA "ba35d4359882f1c6f5e9dc30eb95fe52af50fd6f")
|
||||
|
Loading…
Reference in New Issue
Block a user