QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
fdmblackscholesfwdop.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2012, 2013 Klaus Spanderen
5 Copyright (C) 2014 Johannes Göttker-Schnetmann
6
7
8 This file is part of QuantLib, a free-software/open-source library
9 for financial quantitative analysts and developers - http://quantlib.org/
10
11 QuantLib is free software: you can redistribute it and/or modify it
12 under the terms of the QuantLib license. You should have received a
13 copy of the license along with this program; if not, please email
14 <quantlib-dev@lists.sf.net>. The license is also available online at
15 <http://quantlib.org/license.shtml>.
16
17 This program is distributed in the hope that it will be useful, but WITHOUT
18 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19 FOR A PARTICULAR PURPOSE. See the license for more details.
20*/
21
26#ifndef quantlib_fdm_black_scholes_fwd_op_hpp
27#define quantlib_fdm_black_scholes_fwd_op_hpp
28
29#include <ql/processes/blackscholesprocess.hpp>
30#include <ql/methods/finitedifferences/operators/firstderivativeop.hpp>
31#include <ql/methods/finitedifferences/operators/triplebandlinearop.hpp>
32#include <ql/methods/finitedifferences/operators/fdmlinearopcomposite.hpp>
33
34namespace QuantLib {
35
37 public:
39 const ext::shared_ptr<FdmMesher>& mesher,
40 const ext::shared_ptr<GeneralizedBlackScholesProcess>& process,
41 Real strike,
42 bool localVol = false,
43 Real illegalLocalVolOverwrite = -Null<Real>(),
44 Size direction = 0);
45
46 Size size() const override;
47 void setTime(Time t1, Time t2) override;
48
49 Array apply(const Array& r) const override;
50 Array apply_mixed(const Array& r) const override;
51 Array apply_direction(Size direction, const Array& r) const override;
52 Array solve_splitting(Size direction, const Array& r, Real s) const override;
53 Array preconditioner(const Array& r, Real s) const override;
54
55 std::vector<SparseMatrix> toMatrixDecomp() const override;
56 private:
57 const ext::shared_ptr<FdmMesher> mesher_;
58 const ext::shared_ptr<YieldTermStructure> rTS_, qTS_;
59 const ext::shared_ptr<BlackVolTermStructure> volTS_;
60 const ext::shared_ptr<LocalVolTermStructure> localVol_;
61 const Array x_;
68 };
69}
70
71#endif
1-D array used in linear algebra.
Definition: array.hpp:52
Array apply_direction(Size direction, const Array &r) const override
Array preconditioner(const Array &r, Real s) const override
std::vector< SparseMatrix > toMatrixDecomp() const override
const TripleBandLinearOp dxxMap_
void setTime(Time t1, Time t2) override
Time is required.
Array apply_mixed(const Array &r) const override
const ext::shared_ptr< YieldTermStructure > qTS_
const ext::shared_ptr< FdmMesher > mesher_
Array solve_splitting(Size direction, const Array &r, Real s) const override
const ext::shared_ptr< YieldTermStructure > rTS_
const ext::shared_ptr< BlackVolTermStructure > volTS_
Array apply(const Array &r) const override
const ext::shared_ptr< LocalVolTermStructure > localVol_
template class providing a null value for a given type.
Definition: null.hpp:76
Real Time
continuous quantity with 1-year units
Definition: types.hpp:62
QL_REAL Real
real number
Definition: types.hpp:50
std::size_t Size
size of a container
Definition: types.hpp:58
Definition: any.hpp:35