| 1 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| 2 | |
| 3 | /* |
| 4 | Copyright (C) 2008 Andreas Gaida |
| 5 | Copyright (C) 2008 Ralph Schreyer |
| 6 | Copyright (C) 2008 Klaus Spanderen |
| 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 | |
| 22 | /*! \file fdmmeshercomposite.hpp |
| 23 | \brief FdmMesher which is a composite of Fdm1dMesher |
| 24 | */ |
| 25 | |
| 26 | #ifndef quantlib_fdm_mesher_composite_hpp |
| 27 | #define quantlib_fdm_mesher_composite_hpp |
| 28 | |
| 29 | #include <ql/methods/finitedifferences/meshers/fdmmesher.hpp> |
| 30 | #include <ql/methods/finitedifferences/meshers/fdm1dmesher.hpp> |
| 31 | #include <ql/methods/finitedifferences/operators/fdmlinearopiterator.hpp> |
| 32 | |
| 33 | namespace QuantLib { |
| 34 | |
| 35 | class FdmMesherComposite : public FdmMesher { |
| 36 | public: |
| 37 | FdmMesherComposite( |
| 38 | const ext::shared_ptr<FdmLinearOpLayout>& layout, |
| 39 | const std::vector<ext::shared_ptr<Fdm1dMesher> > & mesher); |
| 40 | |
| 41 | // convenient constructors |
| 42 | explicit FdmMesherComposite( |
| 43 | const std::vector<ext::shared_ptr<Fdm1dMesher> > & mesher); |
| 44 | explicit FdmMesherComposite( |
| 45 | const ext::shared_ptr<Fdm1dMesher>& mesher); |
| 46 | FdmMesherComposite(const ext::shared_ptr<Fdm1dMesher>& m1, |
| 47 | const ext::shared_ptr<Fdm1dMesher>& m2); |
| 48 | FdmMesherComposite(const ext::shared_ptr<Fdm1dMesher>& m1, |
| 49 | const ext::shared_ptr<Fdm1dMesher>& m2, |
| 50 | const ext::shared_ptr<Fdm1dMesher>& m3); |
| 51 | FdmMesherComposite(const ext::shared_ptr<Fdm1dMesher>& m1, |
| 52 | const ext::shared_ptr<Fdm1dMesher>& m2, |
| 53 | const ext::shared_ptr<Fdm1dMesher>& m3, |
| 54 | const ext::shared_ptr<Fdm1dMesher>& m4); |
| 55 | |
| 56 | |
| 57 | Real dplus(const FdmLinearOpIterator& iter, Size direction) const override; |
| 58 | Real dminus(const FdmLinearOpIterator& iter, Size direction) const override; |
| 59 | Real location(const FdmLinearOpIterator& iter, Size direction) const override; |
| 60 | Array locations(Size direction) const override; |
| 61 | |
| 62 | const std::vector<ext::shared_ptr<Fdm1dMesher> >& |
| 63 | getFdm1dMeshers() const; |
| 64 | |
| 65 | private: |
| 66 | const std::vector<ext::shared_ptr<Fdm1dMesher> > mesher_; |
| 67 | }; |
| 68 | } |
| 69 | |
| 70 | #endif |
| 71 | |