Allow up to factor 3 extrapolation in VFP.

This commit is contained in:
Atgeirr Flø Rasmussen 2019-09-30 10:25:19 +02:00 committed by Tor Harald Sandve
parent c21428419a
commit f55c9647b7

View File

@ -258,6 +258,10 @@ inline InterpData findInterpData(const double& value_in, const std::vector<doubl
}
}
if (retval.factor_ > 3.0) {
retval.factor_ = 3.0;
}
return retval;
}