Coverage Report

Created: 2025-08-11 06:28

/src/quantlib/ql/time/calendars/sweden.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) 2000, 2001, 2002, 2003 RiskMap 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
 <http://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/sweden.hpp>
21
22
namespace QuantLib {
23
24
0
    Sweden::Sweden() {
25
        // all calendar instances share the same implementation instance
26
0
        static ext::shared_ptr<Calendar::Impl> impl(new Sweden::Impl);
27
0
        impl_ = impl;
28
0
    }
29
30
0
    bool Sweden::Impl::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
            // Good Friday
38
0
            || (dd == em-3)
39
            // Easter Monday
40
0
            || (dd == em)
41
            // Ascension Thursday
42
0
            || (dd == em+38)
43
            // Whit Monday (till 2004)
44
0
            || (dd == em+49 && y < 2005)
45
            // New Year's Day
46
0
            || (d == 1  && m == January)
47
            // Epiphany
48
0
            || (d == 6  && m == January)
49
            // May Day
50
0
            || (d == 1  && m == May)
51
            // National Day
52
            // Only a holiday since 2005
53
0
            || (d == 6 && m == June && y >= 2005)
54
            // Midsummer Eve (Friday between June 19-25)
55
0
            || (w == Friday && (d >= 19 && d <= 25) && m == June)
56
            // Christmas Eve
57
0
            || (d == 24 && m == December)
58
            // Christmas Day
59
0
            || (d == 25 && m == December)
60
            // Boxing Day
61
0
            || (d == 26 && m == December)
62
            // New Year's Eve
63
0
            || (d == 31 && m == December))
64
0
            return false; // NOLINT(readability-simplify-boolean-expr)
65
0
        return true;
66
0
    }
67
68
}
69