/usr/include/ql/math/interpolation.hpp is in libquantlib0-dev 1.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2002, 2003 Ferdinando Ametrano
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
Copyright (C) 2003, 2004, 2005, 2006 StatPro Italia srl
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
<quantlib-dev@lists.sf.net>. The license is also available online at
<http://quantlib.org/license.shtml>.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
/*! \file interpolation.hpp
\brief base class for 1-D interpolations
*/
#ifndef quantlib_interpolation_hpp
#define quantlib_interpolation_hpp
#include <ql/math/interpolations/extrapolation.hpp>
#include <ql/math/comparison.hpp>
#include <ql/errors.hpp>
#include <vector>
namespace QuantLib {
//! base class for 1-D interpolations.
/*! Classes derived from this class will provide interpolated
values from two sequences of equal length, representing
discretized values of a variable and a function of the former,
respectively.
*/
class Interpolation : public Extrapolator {
protected:
//! abstract base class for interpolation implementations
class Impl {
public:
virtual ~Impl() {}
virtual void update() = 0;
virtual Real xMin() const = 0;
virtual Real xMax() const = 0;
virtual std::vector<Real> xValues() const = 0;
virtual std::vector<Real> yValues() const = 0;
virtual bool isInRange(Real) const = 0;
virtual Real value(Real) const = 0;
virtual Real primitive(Real) const = 0;
virtual Real derivative(Real) const = 0;
virtual Real secondDerivative(Real) const = 0;
};
boost::shared_ptr<Impl> impl_;
public:
typedef Real argument_type;
typedef Real result_type;
//! basic template implementation
template <class I1, class I2>
class templateImpl : public Impl {
public:
templateImpl(const I1& xBegin, const I1& xEnd, const I2& yBegin)
: xBegin_(xBegin), xEnd_(xEnd), yBegin_(yBegin) {
QL_REQUIRE(static_cast<int>(xEnd_-xBegin_) >= 2,
"not enough points to interpolate: at least 2 "
"required, " << static_cast<int>(xEnd_-xBegin_)<< " provided");
}
Real xMin() const {
return *xBegin_;
}
Real xMax() const {
return *(xEnd_-1);
}
std::vector<Real> xValues() const {
return std::vector<Real>(xBegin_,xEnd_);
}
std::vector<Real> yValues() const {
return std::vector<Real>(yBegin_,yBegin_+(xEnd_-xBegin_));
}
bool isInRange(Real x) const {
#if defined(QL_EXTRA_SAFETY_CHECKS)
for (I1 i=xBegin_, j=xBegin_+1; j!=xEnd_; ++i, ++j)
QL_REQUIRE(*j > *i, "unsorted x values");
#endif
Real x1 = xMin(), x2 = xMax();
return (x >= x1 && x <= x2) || close(x,x1) || close(x,x2);
}
protected:
Size locate(Real x) const {
#if defined(QL_EXTRA_SAFETY_CHECKS)
for (I1 i=xBegin_, j=xBegin_+1; j!=xEnd_; ++i, ++j)
QL_REQUIRE(*j > *i, "unsorted x values");
#endif
if (x < *xBegin_)
return 0;
else if (x > *(xEnd_-1))
return xEnd_-xBegin_-2;
else
return std::upper_bound(xBegin_,xEnd_-1,x)-xBegin_-1;
}
I1 xBegin_, xEnd_;
I2 yBegin_;
};
public:
Interpolation() {}
virtual ~Interpolation() {}
bool empty() const { return !impl_; }
Real operator()(Real x, bool allowExtrapolation = false) const {
checkRange(x,allowExtrapolation);
return impl_->value(x);
}
Real primitive(Real x, bool allowExtrapolation = false) const {
checkRange(x,allowExtrapolation);
return impl_->primitive(x);
}
Real derivative(Real x, bool allowExtrapolation = false) const {
checkRange(x,allowExtrapolation);
return impl_->derivative(x);
}
Real secondDerivative(Real x, bool allowExtrapolation = false) const {
checkRange(x,allowExtrapolation);
return impl_->secondDerivative(x);
}
Real xMin() const {
return impl_->xMin();
}
Real xMax() const {
return impl_->xMax();
}
bool isInRange(Real x) const {
return impl_->isInRange(x);
}
void update() {
impl_->update();
}
protected:
void checkRange(Real x, bool extrapolate) const {
QL_REQUIRE(extrapolate || allowsExtrapolation() ||
impl_->isInRange(x),
"interpolation range is ["
<< impl_->xMin() << ", " << impl_->xMax()
<< "]: extrapolation at " << x << " not allowed");
}
};
}
#endif
|