QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
onestepforwards.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2006 Mark Joshi
5
6 This file is part of QuantLib, a free-software/open-source library
7 for financial quantitative analysts and developers - http://quantlib.org/
8
9 QuantLib is free software: you can redistribute it and/or modify it
10 under the terms of the QuantLib license. You should have received a
11 copy of the license along with this program; if not, please email
12 <quantlib-dev@lists.sf.net>. The license is also available online at
13 <http://quantlib.org/license.shtml>.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the license for more details.
18*/
19
20
21#ifndef quantlib_onestep_forwards_hpp
22#define quantlib_onestep_forwards_hpp
23
24#include <ql/models/marketmodels/products/multiproductonestep.hpp>
25
26namespace QuantLib {
27
29 public:
30 OneStepForwards(const std::vector<Time>& rateTimes,
31 std::vector<Real> accruals,
32 const std::vector<Time>& paymentTimes,
33 std::vector<Rate> strikes);
35
36 std::vector<Time> possibleCashFlowTimes() const override;
37 Size numberOfProducts() const override;
39 void reset() override;
40 bool nextTimeStep(const CurveState& currentState,
41 std::vector<Size>& numberCashFlowsThisStep,
42 std::vector<std::vector<CashFlow> >& cashFlowsGenerated) override;
43 std::unique_ptr<MarketModelMultiProduct> clone() const override;
45 private:
46 std::vector<Real> accruals_;
47 std::vector<Time> paymentTimes_;
48 std::vector<Rate> strikes_;
49 };
50
51 // inline definitions
52
53 inline std::vector<Time>
55 return paymentTimes_;
56 }
57
58 inline Size
60 return strikes_.size();
61 }
62
63 inline Size
65 return 1;
66 }
67
68 inline void
70 // nothing to do
71 }
72
73}
74
75
76#endif
77
Curve state for market-model simulations
Definition: curvestate.hpp:41
Single-step market-model product.
std::vector< Time > paymentTimes_
std::unique_ptr< MarketModelMultiProduct > clone() const override
returns a newly-allocated copy of itself
bool nextTimeStep(const CurveState &currentState, std::vector< Size > &numberCashFlowsThisStep, std::vector< std::vector< CashFlow > > &cashFlowsGenerated) override
return value indicates whether path is finished, TRUE means done
std::vector< Time > possibleCashFlowTimes() const override
Size maxNumberOfCashFlowsPerProductPerStep() const override
Size numberOfProducts() const override
std::vector< Rate > strikes_
std::vector< Real > accruals_
void reset() override
during simulation put product at start of path
std::size_t Size
size of a container
Definition: types.hpp:58
Definition: any.hpp:35