Coverage Report

Created: 2026-06-23 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/quantlib/ql/time/calendars/czechrepublic.cpp
Line
Count
Source
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
 Copyright (C) 2005 StatPro Italia srl
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
 <https://www.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
#include <ql/time/calendars/czechrepublic.hpp>
21
22
namespace QuantLib {
23
24
0
    CzechRepublic::CzechRepublic(Market) {
25
        // all calendar instances share the same implementation instance
26
0
        static ext::shared_ptr<Calendar::Impl> impl(
27
0
                                                  new CzechRepublic::PseImpl);
28
0
        impl_ = impl;
29
0
    }
30
31
0
    bool CzechRepublic::PseImpl::isBusinessDay(const Date& date) const {
32
0
        Weekday w = date.weekday();
33
0
        Day d = date.dayOfMonth(), dd = date.dayOfYear();
34
0
        Month m = date.month();
35
0
        Year y = date.year();
36
0
        Day em = easterMonday(y);
37
0
        if (isWeekend(w)
38
            // New Year's Day
39
0
            || (d == 1 && m == January)
40
      // Good Friday
41
0
      || (dd == em - 3 && y >= 2016)
42
            // Easter Monday
43
0
            || (dd == em)
44
            // Labour Day
45
0
            || (d == 1 && m == May)
46
            // Liberation Day
47
0
            || (d == 8 && m == May)
48
            // SS. Cyril and Methodius
49
0
            || (d == 5 && m == July)
50
            // Jan Hus Day
51
0
            || (d == 6 && m == July)
52
            // Czech Statehood Day
53
0
            || (d == 28 && m == September)
54
            // Independence Day
55
0
            || (d == 28 && m == October)
56
            // Struggle for Freedom and Democracy Day
57
0
            || (d == 17 && m == November)
58
            // Christmas Eve
59
0
            || (d == 24 && m == December)
60
            // Christmas
61
0
            || (d == 25 && m == December)
62
            // St. Stephen
63
0
            || (d == 26 && m == December)
64
            // unidentified closing days for stock exchange
65
0
            || (d == 2 && m == January && y == 2004)
66
0
            || (d == 31 && m == December && y == 2004))
67
0
            return false; // NOLINT(readability-simplify-boolean-expr)
68
0
        return true;
69
0
    }
70
71
}
72