Coverage Report

Created: 2025-09-04 07:11

/src/quantlib/ql/instruments/bonds/cmsratebond.cpp
Line
Count
Source (jump to first uncovered line)
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
 Copyright (C) 2007 Ferdinando Ametrano
5
 Copyright (C) 2006, 2007 Chiara Fornarola
6
 Copyright (C) 2007 StatPro Italia srl
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
 <https://www.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
#include <ql/instruments/bonds/cmsratebond.hpp>
23
#include <ql/cashflows/cmscoupon.hpp>
24
#include <ql/cashflows/simplecashflow.hpp>
25
#include <ql/indexes/swapindex.hpp>
26
#include <ql/time/schedule.hpp>
27
28
namespace QuantLib {
29
30
    CmsRateBond::CmsRateBond(
31
                           Natural settlementDays,
32
                           Real faceAmount,
33
                           Schedule schedule,
34
                           const ext::shared_ptr<SwapIndex>& index,
35
                           const DayCounter& paymentDayCounter,
36
                           BusinessDayConvention paymentConvention,
37
                           Natural fixingDays,
38
                           const std::vector<Real>& gearings,
39
                           const std::vector<Spread>& spreads,
40
                           const std::vector<Rate>& caps,
41
                           const std::vector<Rate>& floors,
42
                           bool inArrears,
43
                           Real redemption,
44
                           const Date& issueDate)
45
0
    : Bond(settlementDays, schedule.calendar(), issueDate) {
46
47
0
        maturityDate_ = schedule.endDate();
48
49
0
        cashflows_ = CmsLeg(std::move(schedule), index)
50
0
            .withNotionals(faceAmount)
51
0
            .withPaymentDayCounter(paymentDayCounter)
52
0
            .withPaymentAdjustment(paymentConvention)
53
0
            .withFixingDays(fixingDays)
54
0
            .withGearings(gearings)
55
0
            .withSpreads(spreads)
56
0
            .withCaps(caps)
57
0
            .withFloors(floors)
58
0
            .inArrears(inArrears);
59
60
0
        addRedemptionsToCashflows(std::vector<Real>(1, redemption));
61
62
0
        QL_ENSURE(!cashflows().empty(), "bond with no cashflows!");
63
0
        QL_ENSURE(redemptions_.size() == 1, "multiple redemptions created");
64
65
0
        registerWith(index);
66
0
    }
Unexecuted instantiation: QuantLib::CmsRateBond::CmsRateBond(unsigned int, double, QuantLib::Schedule, boost::shared_ptr<QuantLib::SwapIndex> const&, QuantLib::DayCounter const&, QuantLib::BusinessDayConvention, unsigned int, std::__1::vector<double, std::__1::allocator<double> > const&, std::__1::vector<double, std::__1::allocator<double> > const&, std::__1::vector<double, std::__1::allocator<double> > const&, std::__1::vector<double, std::__1::allocator<double> > const&, bool, double, QuantLib::Date const&)
Unexecuted instantiation: QuantLib::CmsRateBond::CmsRateBond(unsigned int, double, QuantLib::Schedule, boost::shared_ptr<QuantLib::SwapIndex> const&, QuantLib::DayCounter const&, QuantLib::BusinessDayConvention, unsigned int, std::__1::vector<double, std::__1::allocator<double> > const&, std::__1::vector<double, std::__1::allocator<double> > const&, std::__1::vector<double, std::__1::allocator<double> > const&, std::__1::vector<double, std::__1::allocator<double> > const&, bool, double, QuantLib::Date const&)
67
68
}