Logo
Fully annotated reference manual - version 1.8.12
Loading...
Searching...
No Matches
projectedbufferedmultipathgeneratorfactory.hpp
Go to the documentation of this file.
1/*
2 Copyright (C) 2020 Quaternion Risk Management Ltd
3 All rights reserved.
4
5 This file is part of ORE, a free-software/open-source library
6 for transparent pricing and risk analysis - http://opensourcerisk.org
7
8 ORE is free software: you can redistribute it and/or modify it
9 under the terms of the Modified BSD License. You should have received a
10 copy of the license along with this program.
11 The license is also available online at <http://opensourcerisk.org>
12
13 This program is distributed on the basis that it will form a useful
14 contribution to risk analytics and model standardisation, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the license for more details.
17*/
18
19/*! \file projectedbufferedmultipathgeneratorfactory.hpp
20 \brief path generator factory that builds a projected path generator
21 \ingroup methods
22*/
23
24#pragma once
25
28
30
31namespace QuantExt {
32
34public:
36 const std::vector<Size>& stateProcessProjection,
37 const QuantLib::ext::shared_ptr<std::vector<std::vector<QuantLib::Path>>>& bufferedPaths)
38 : stateProcessProjection_(stateProcessProjection), bufferedPaths_(bufferedPaths) {}
39 QuantLib::ext::shared_ptr<MultiPathGeneratorBase> build(const SequenceType s,
40 const QuantLib::ext::shared_ptr<StochasticProcess>& process,
41 const TimeGrid& timeGrid, const BigNatural seed,
42 const SobolBrownianGenerator::Ordering ordering,
43 const SobolRsg::DirectionIntegers directionIntegers) override {
44 return QuantLib::ext::make_shared<ProjectedBufferedMultiPathGenerator>(stateProcessProjection_, bufferedPaths_);
45 }
46
47private:
48 const std::vector<Size> stateProcessProjection_;
49 const QuantLib::ext::shared_ptr<std::vector<std::vector<QuantLib::Path>>> bufferedPaths_;
50};
51
52} // namespace QuantExt
Base class for path generator factories.
const QuantLib::ext::shared_ptr< std::vector< std::vector< QuantLib::Path > > > bufferedPaths_
QuantLib::ext::shared_ptr< MultiPathGeneratorBase > build(const SequenceType s, const QuantLib::ext::shared_ptr< StochasticProcess > &process, const TimeGrid &timeGrid, const BigNatural seed, const SobolBrownianGenerator::Ordering ordering, const SobolRsg::DirectionIntegers directionIntegers) override
ProjectedBufferedMultiPathGeneratorFactory(const std::vector< Size > &stateProcessProjection, const QuantLib::ext::shared_ptr< std::vector< std::vector< QuantLib::Path > > > &bufferedPaths)
multi path generators returning the generating N(0,1) variates, this is very much in parallel to the ...
base class and standard implementation for path generator factories
multi path generator projecting paths from a buffered state processr