Loading [MathJax]/extensions/tex2jax.js
QuantLib
: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
Variables
a
b
c
d
e
f
i
l
m
n
p
r
s
t
Typedefs
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
v
y
z
Enumerations
Enumerator
a
b
c
d
e
f
g
h
j
l
m
n
o
p
q
s
t
u
w
y
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
g
h
i
k
m
o
p
r
s
t
u
v
w
z
Enumerations
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
y
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
a
b
c
d
f
i
m
n
o
p
q
r
s
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
x
y
z
Macros
b
d
i
m
n
p
q
s
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
ql
pricingengines
swaption
treeswaptionengine.hpp
Go to the documentation of this file.
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
Copyright (C) 2001, 2002, 2003 Sadruddin Rejeb
5
Copyright (C) 2005, 2007 StatPro Italia srl
6
7
This file is part of QuantLib, a free-software/open-source library
8
for financial quantitative analysts and developers - http://quantlib.org/
9
10
QuantLib is free software: you can redistribute it and/or modify it
11
under the terms of the QuantLib license. You should have received a
12
copy of the license along with this program; if not, please email
13
<quantlib-dev@lists.sf.net>. The license is also available online at
14
<http://quantlib.org/license.shtml>.
15
16
This program is distributed in the hope that it will be useful, but WITHOUT
17
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18
FOR A PARTICULAR PURPOSE. See the license for more details.
19
*/
20
21
/*! \file treeswaptionengine.hpp
22
\brief Numerical lattice engine for swaptions
23
*/
24
25
#ifndef quantlib_tree_swaption_engine_hpp
26
#define quantlib_tree_swaption_engine_hpp
27
28
#include <
ql/instruments/swaption.hpp
>
29
#include <
ql/pricingengines/latticeshortratemodelengine.hpp
>
30
31
namespace
QuantLib
{
32
33
//! Numerical lattice engine for swaptions
34
/*! \ingroup swaptionengines
35
36
\warning This engine is not guaranteed to work if the
37
underlying swap has a start date in the past, i.e.,
38
before today's date. When using this engine, prune
39
the initial part of the swap so that it starts at
40
\f$ t \geq 0 \f$.
41
42
\test calculations are checked against cached results
43
*/
44
class
TreeSwaptionEngine
45
:
public
LatticeShortRateModelEngine
<Swaption::arguments,
46
Swaption::results> {
47
public
:
48
/*! \name Constructors
49
\note the term structure is only needed when the short-rate
50
model cannot provide one itself.
51
*/
52
//@{
53
TreeSwaptionEngine
(
const
ext::shared_ptr<ShortRateModel>&,
54
Size
timeSteps,
55
Handle<YieldTermStructure>
termStructure =
Handle<YieldTermStructure>
());
56
TreeSwaptionEngine
(
const
ext::shared_ptr<ShortRateModel>&,
57
const
TimeGrid
& timeGrid,
58
Handle<YieldTermStructure>
termStructure =
Handle<YieldTermStructure>
());
59
TreeSwaptionEngine
(
const
Handle<ShortRateModel>
&,
60
Size
timeSteps,
61
Handle<YieldTermStructure>
termStructure =
Handle<YieldTermStructure>
());
62
//@}
63
void
calculate
()
const override
;
64
65
private
:
66
Handle<YieldTermStructure>
termStructure_
;
67
};
68
69
}
70
71
72
#endif
QuantLib::Handle
Shared handle to an observable.
Definition:
handle.hpp:41
QuantLib::LatticeShortRateModelEngine
Engine for a short-rate model specialized on a lattice.
Definition:
latticeshortratemodelengine.hpp:39
QuantLib::TimeGrid
time grid class
Definition:
timegrid.hpp:43
QuantLib::TreeSwaptionEngine
Numerical lattice engine for swaptions.
Definition:
treeswaptionengine.hpp:46
QuantLib::TreeSwaptionEngine::calculate
void calculate() const override
Definition:
treeswaptionengine.cpp:51
QuantLib::TreeSwaptionEngine::termStructure_
Handle< YieldTermStructure > termStructure_
Definition:
treeswaptionengine.hpp:66
QuantLib::Size
std::size_t Size
size of a container
Definition:
types.hpp:58
latticeshortratemodelengine.hpp
Engine for a short-rate model specialized on a lattice.
QuantLib
Definition:
any.hpp:35
swaption.hpp
Swaption class.
Generated by
Doxygen
1.9.5