Home | History | Annotate | Download | only in core

Lines Matching refs:Algorithm

30 template <typename T, class Algorithm>
31 InterpolatorBase<T, Algorithm>::InterpolatorBase() {
44 template <typename T, class Algorithm>
45 InterpolatorBase<T, Algorithm>::~InterpolatorBase() {
52 template <typename T, class Algorithm>
53 bool InterpolatorBase<T, Algorithm>::Initialize(const vector<T> &x_data,
64 template <typename T, class Algorithm>
65 bool InterpolatorBase<T, Algorithm>::Initialize(double x_start_offset,
74 template <typename T, class Algorithm>
75 bool InterpolatorBase<T, Algorithm>::Initialize(double x_start_offset,
95 template <typename T, class Algorithm>
96 bool InterpolatorBase<T, Algorithm>::Initialize(
122 status_ = static_cast<Algorithm*>(this)->SetInternalState();
126 template <typename T, class Algorithm>
127 T InterpolatorBase<T, Algorithm>::Interpolate(T x) {
173 return static_cast<Algorithm*>(this)->MethodSpecificInterpolation(x);