diff options
Diffstat (limited to 'src/ipa/libipa/pwl.cpp')
-rw-r--r-- | src/ipa/libipa/pwl.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/ipa/libipa/pwl.cpp b/src/ipa/libipa/pwl.cpp index 1ba01085..d8ea92be 100644 --- a/src/ipa/libipa/pwl.cpp +++ b/src/ipa/libipa/pwl.cpp @@ -183,6 +183,12 @@ void Pwl::prepend(double x, double y, const double eps) } /** + * \fn Pwl::empty() const + * \brief Check if the piecewise linear function is empty + * \return True if there are no points in the function, false otherwise + */ + +/** * \brief Get the domain of the piecewise linear function * \return An interval representing the domain */ @@ -204,15 +210,6 @@ Pwl::Interval Pwl::range() const } /** - * \brief Check if the piecewise linear function is empty - * \return True if there are no points in the function, false otherwise - */ -bool Pwl::empty() const -{ - return points_.empty(); -} - -/** * \brief Evaluate the piecewise linear function * \param[in] x The x value to input into the function * \param[inout] span Initial guess for span |