Skip to content

Commit be38983

Browse files
mgronckijenkins
authored andcommitted
Merge remote-tracking branch 'origin/master' into QPR-11512
1 parent be6d095 commit be38983

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

Docker/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TAG=latest
2-
QL_TAG=1.28_f7014c4
2+
QL_TAG=1.29_70d9371
33
BOOST_TAG=1.72.0
44
BOOST_DIR=1_72_0
55
NUM_CORES=16

OREData/ored/marketdata/yieldcurve.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ boost::shared_ptr<YieldTermStructure> buildYieldCurve(const vector<Date>& dates,
119119
CubicInterpolation::FirstDerivative)));
120120
break;
121121
case YieldCurve::InterpolationMethod::ConvexMonotone:
122-
yieldts.reset(new CurveType<QuantLib::ConvexMonotone>(dates, rates, dayCounter));
122+
yieldts.reset(
123+
new CurveType<QuantLib::ConvexMonotone>(dates, rates, dayCounter, Calendar(), {}, {}, QuantLib::ConvexMonotone()));
123124
break;
124125
case YieldCurve::InterpolationMethod::Quadratic:
125126
yieldts.reset(new CurveType<QuantExt::Quadratic>(dates, rates, dayCounter, QuantExt::Quadratic(1, 0, 1, 0, 1)));

QuantExt/qle/models/irlgm1fparametrization.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include <ql/handle.hpp>
3131
#include <ql/math/integrals/integral.hpp>
3232
#include <ql/termstructures/yieldtermstructure.hpp>
33+
#include <map>
3334

3435
namespace QuantExt {
3536

QuantExt/qle/termstructures/creditvolcurve.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include <ql/patterns/lazyobject.hpp>
3030
#include <ql/quote.hpp>
3131
#include <ql/termstructures/volatility/equityfx/blackvoltermstructure.hpp>
32-
32+
#include <map>
3333
#include <tuple>
3434

3535
namespace QuantExt {

QuantLib

Submodule QuantLib updated from 9a123d3 to 2c9b253

0 commit comments

Comments
 (0)