Coverage Report

Created: 2026-03-31 07:01

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/quantlib/ql/models/equity/hestonmodel.cpp
Line
Count
Source
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
 Copyright (C) 2005 Klaus Spanderen
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/models/equity/hestonmodel.hpp>
21
#include <ql/quotes/simplequote.hpp>
22
#include <ql/shared_ptr.hpp>
23
24
namespace QuantLib {
25
26
    HestonModel::HestonModel(const ext::shared_ptr<HestonProcess> & process)
27
0
    : CalibratedModel(5), process_(process) {
28
0
        arguments_[0] = ConstantParameter(process->theta(),
29
0
                                          PositiveConstraint());
30
0
        arguments_[1] = ConstantParameter(process->kappa(),
31
0
                                          PositiveConstraint());
32
0
        arguments_[2] = ConstantParameter(process->sigma(),
33
0
                                          PositiveConstraint());
34
0
        arguments_[3] = ConstantParameter(process->rho(),
35
0
                                          BoundaryConstraint(-1.0, 1.0));
36
0
        arguments_[4] = ConstantParameter(process->v0(),
37
0
                                          PositiveConstraint());
38
0
        HestonModel::generateArguments();
39
40
0
        registerWith(process_->riskFreeRate());
41
0
        registerWith(process_->dividendYield());
42
0
        registerWith(process_->s0());
43
0
    }
Unexecuted instantiation: QuantLib::HestonModel::HestonModel(boost::shared_ptr<QuantLib::HestonProcess> const&)
Unexecuted instantiation: QuantLib::HestonModel::HestonModel(boost::shared_ptr<QuantLib::HestonProcess> const&)
44
45
0
    void HestonModel::generateArguments() {
46
0
        process_ = ext::make_shared<HestonProcess>(process_->riskFreeRate(),
47
0
                                         process_->dividendYield(),
48
0
                                         process_->s0(),
49
0
                                         v0(), kappa(), theta(),
50
0
                                         sigma(), rho());
51
0
    }
52
53
}
54