remove cutoff for extrapolation of VFP

This commit is contained in:
Tor Harald Sandve 2022-10-03 10:26:08 +02:00
parent eb0a516ff0
commit ebb9fd636c

View File

@ -134,13 +134,6 @@ InterpData findInterpData(const double value_in, const std::vector<double>& valu
}
}
// Disallow extrapolation with higher factor than 3.0.
// The factor 3.0 has been chosen because it works well
// with certain testcases, and may not be optimal.
if (retval.factor_ > 3.0) {
retval.factor_ = 3.0;
}
return retval;
}