Coverage Report

Created: 2026-03-31 07:01

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/quantlib/ql/time/calendars/slovakia.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/slovakia.hpp>
21
22
namespace QuantLib {
23
24
0
    Slovakia::Slovakia(Market) {
25
        // all calendar instances share the same implementation instance
26
0
        static ext::shared_ptr<Calendar::Impl> impl(new Slovakia::BsseImpl);
27
0
        impl_ = impl;
28
0
    }
29
30
0
    bool Slovakia::BsseImpl::isBusinessDay(const Date& date) const {
31
0
        Weekday w = date.weekday();
32
0
        Day d = date.dayOfMonth(), dd = date.dayOfYear();
33
0
        Month m = date.month();
34
0
        Year y = date.year();
35
0
        Day em = easterMonday(y);
36
0
        if (isWeekend(w)
37
            // New Year's Day
38
0
            || (d == 1 && m == January)
39
            // Epiphany
40
0
            || (d == 6 && m == January)
41
            // Good Friday
42
0
            || (dd == em-3)
43
            // Easter Monday
44
0
            || (dd == em)
45
            // May Day
46
0
            || (d == 1 && m == May)
47
            // Liberation of the Republic
48
0
            || (d == 8 && m == May)
49
            // SS. Cyril and Methodius
50
0
            || (d == 5 && m == July)
51
            // Slovak National Uprising
52
0
            || (d == 29 && m == August)
53
            // Constitution of the Slovak Republic
54
0
            || (d == 1 && m == September)
55
            // Our Lady of the Seven Sorrows
56
0
            || (d == 15 && m == September)
57
            // All Saints Day
58
0
            || (d == 1 && m == November)
59
            // Freedom and Democracy of the Slovak Republic
60
0
            || (d == 17 && m == November)
61
            // Christmas Eve
62
0
            || (d == 24 && m == December)
63
            // Christmas
64
0
            || (d == 25 && m == December)
65
            // St. Stephen
66
0
            || (d == 26 && m == December)
67
            // unidentified closing days for stock exchange
68
0
            || (d >= 24 && d <= 31 && m == December && y == 2004)
69
0
            || (d >= 24 && d <= 31 && m == December && y == 2005))
70
0
            return false; // NOLINT(readability-simplify-boolean-expr)
71
0
        return true;
72
0
    }
73
74
}
75