/usr/include/ql/methods/finitedifferences/finitedifferencemodel.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 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2000, 2001, 2002, 2003 RiskMap 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 finitedifferencemodel.hpp
\brief generic finite difference model
*/
#ifndef quantlib_finite_difference_model_hpp
#define quantlib_finite_difference_model_hpp
#include <ql/methods/finitedifferences/stepcondition.hpp>
#include <ql/methods/finitedifferences/boundarycondition.hpp>
#include <ql/methods/finitedifferences/operatortraits.hpp>
namespace QuantLib {
//! Generic finite difference model
/*! \ingroup findiff */
template<class Evolver>
class FiniteDifferenceModel {
public:
typedef typename Evolver::traits traits;
typedef typename traits::operator_type operator_type;
typedef typename traits::array_type array_type;
typedef typename traits::bc_set bc_set;
typedef typename traits::condition_type condition_type;
// constructors
FiniteDifferenceModel(const operator_type& L,
const bc_set& bcs,
const std::vector<Time>& stoppingTimes =
std::vector<Time>())
: evolver_(L,bcs), stoppingTimes_(stoppingTimes) {
std::sort(stoppingTimes_.begin(), stoppingTimes_.end());
std::vector<Time>::iterator last =
std::unique(stoppingTimes_.begin(), stoppingTimes_.end());
stoppingTimes_.erase(last, stoppingTimes_.end());
}
FiniteDifferenceModel(const Evolver& evolver,
const std::vector<Time>& stoppingTimes =
std::vector<Time>())
: evolver_(evolver), stoppingTimes_(stoppingTimes) {
std::sort(stoppingTimes_.begin(), stoppingTimes_.end());
std::vector<Time>::iterator last =
std::unique(stoppingTimes_.begin(), stoppingTimes_.end());
stoppingTimes_.erase(last, stoppingTimes_.end());
}
// methods
// array_type grid() const { return evolver.xGrid(); }
const Evolver& evolver() const{ return evolver_; }
/*! solves the problem between the given times.
\warning being this a rollback, <tt>from</tt> must be a later
time than <tt>to</tt>.
*/
void rollback(array_type& a,
Time from,
Time to,
Size steps) {
rollbackImpl(a,from,to,steps,(const condition_type*) 0);
}
/*! solves the problem between the given times,
applying a condition at every step.
\warning being this a rollback, <tt>from</tt> must be a later
time than <tt>to</tt>.
*/
void rollback(array_type& a,
Time from,
Time to,
Size steps,
const condition_type& condition) {
rollbackImpl(a,from,to,steps,&condition);
}
private:
void rollbackImpl(array_type& a,
Time from,
Time to,
Size steps,
const condition_type* condition) {
QL_REQUIRE(from >= to,
"trying to roll back from " << from << " to " << to);
Time dt = (from-to)/steps, t = from;
evolver_.setStep(dt);
if(!stoppingTimes_.empty() && stoppingTimes_.back() == from) {
if (condition)
condition->applyTo(a,from);
}
for (Size i=0; i<steps; ++i, t -= dt) {
Time now = t, next = t-dt;
if (std::fabs(to-next) < std::sqrt(QL_EPSILON)) next = to;
bool hit = false;
for (Integer j = static_cast<Integer>(stoppingTimes_.size())-1; j >= 0 ; --j) {
if (next <= stoppingTimes_[j] && stoppingTimes_[j] < now) {
// a stopping time was hit
hit = true;
// perform a small step to stoppingTimes_[j]...
evolver_.setStep(now-stoppingTimes_[j]);
evolver_.step(a,now);
if (condition)
condition->applyTo(a,stoppingTimes_[j]);
// ...and continue the cycle
now = stoppingTimes_[j];
}
}
// if we did hit...
if (hit) {
// ...we might have to make a small step to
// complete the big one...
if (now > next) {
evolver_.setStep(now - next);
evolver_.step(a,now);
if (condition)
condition->applyTo(a,next);
}
// ...and in any case, we have to reset the
// evolver to the default step.
evolver_.setStep(dt);
} else {
// if we didn't, the evolver is already set to the
// default step, which is ok for us.
evolver_.step(a,now);
if (condition)
condition->applyTo(a, next);
}
}
}
Evolver evolver_;
std::vector<Time> stoppingTimes_;
};
}
#endif
|