diff --git a/dumux/common/monotonecubicspline.hh b/dumux/common/monotonecubicspline.hh index 74cf2000650b724713103d18b2ab0ff8882afe25..46a8727feae7921501989c7283dc09a47af6f781 100644 --- a/dumux/common/monotonecubicspline.hh +++ b/dumux/common/monotonecubicspline.hh @@ -64,11 +64,6 @@ public: */ MonotoneCubicSpline(const std::vector<Scalar>& x, const std::vector<Scalar>& y) { - // check some requirements - assert (x.size() == y.size()); - assert (x.size() >=2); - assert (std::is_sorted(x.begin(), x.end())); - updatePoints(x, y); } @@ -79,6 +74,11 @@ public: */ void updatePoints(const std::vector<Scalar>& x, const std::vector<Scalar>& y) { + // check some requirements + assert (x.size() == y.size()); + assert (x.size() >=2); + assert (std::is_sorted(x.begin(), x.end())); + // save a copy of the control points x_ = x; y_ = y;