pax_global_header 0000666 0000000 0000000 00000000064 15037373673 0014530 g ustar 00root root 0000000 0000000 52 comment=a91b75741b8c0c3fa99eaf176e5fa6516b3e4685
QuantLib-1.39/ 0000775 0000000 0000000 00000000000 15037373673 0013203 5 ustar 00root root 0000000 0000000 QuantLib-1.39/.appveyor.yml 0000664 0000000 0000000 00000000322 15037373673 0015646 0 ustar 00root root 0000000 0000000 image: Visual Studio 2017
platform: x64
configuration: Release
version: ci.{build}
before_build:
- COPY .ci\VS2017.props .\Build.props
build:
parallel: false
project: QuantLib.sln
verbosity: normal
QuantLib-1.39/.ci/ 0000775 0000000 0000000 00000000000 15037373673 0013654 5 ustar 00root root 0000000 0000000 QuantLib-1.39/.ci/Unity.props 0000664 0000000 0000000 00000000255 15037373673 0016053 0 ustar 00root root 0000000 0000000 true
QuantLib-1.39/.ci/VS2017.props 0000664 0000000 0000000 00000001471 15037373673 0015606 0 ustar 00root root 0000000 0000000
falseC:\Libraries\boost_1_69_0;%(AdditionalIncludeDirectories)/bigobj %(AdditionalOptions)DisabledC:\Libraries\boost_1_69_0\lib64-msvc-14.1;%(AdditionalLibraryDirectories)
QuantLib-1.39/.ci/VS2019.alt.props 0000664 0000000 0000000 00000001356 15037373673 0016371 0 ustar 00root root 0000000 0000000
C:\local\boost;%(AdditionalIncludeDirectories)/bigobj %(AdditionalOptions)truestdcpp17_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS;%(PreprocessorDefinitions)
QuantLib-1.39/.ci/VS2019.props 0000664 0000000 0000000 00000001074 15037373673 0015607 0 ustar 00root root 0000000 0000000
C:\local\boost;%(AdditionalIncludeDirectories)/bigobj %(AdditionalOptions)true
QuantLib-1.39/.ci/VS2022.alt.props 0000664 0000000 0000000 00000001356 15037373673 0016363 0 ustar 00root root 0000000 0000000
C:\local\boost;%(AdditionalIncludeDirectories)/bigobj %(AdditionalOptions)truestdcpp17_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS;%(PreprocessorDefinitions)
QuantLib-1.39/.ci/VS2022.props 0000664 0000000 0000000 00000001074 15037373673 0015601 0 ustar 00root root 0000000 0000000
C:\local\boost;%(AdditionalIncludeDirectories)/bigobj %(AdditionalOptions)true
QuantLib-1.39/.ci/userconfig2019.alt.hpp 0000664 0000000 0000000 00000010270 15037373673 0017624 0 ustar 00root root 0000000 0000000 /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2004, 2011 Ferdinando Ametrano
Copyright (C) 2004, 2005 StatPro Italia srl
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
. The license is also available online at
.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#ifndef quantlib_config_hpp
#define quantlib_config_hpp
/***************************************************************
User configuration section:
modify the following definitions to suit your preferences.
Do not modify this file if you are using a Linux/Unix system:
it will not be read by the compiler. The definitions below
will be provided by running ./configure instead.
****************************************************************/
/* Define this if error messages should include current function
information. */
#ifndef QL_ERROR_FUNCTIONS
# define QL_ERROR_FUNCTIONS
#endif
/* Define this if error messages should include file and line information. */
#ifndef QL_ERROR_LINES
# define QL_ERROR_LINES
#endif
/* Define this if tracing messages should be allowed (whether they are
actually emitted will depend on run-time settings.) */
#ifndef QL_ENABLE_TRACING
# define QL_ENABLE_TRACING
#endif
/* Define this if extra safety checks should be performed. This can degrade
performance. */
#ifndef QL_EXTRA_SAFETY_CHECKS
# define QL_EXTRA_SAFETY_CHECKS
#endif
/* Define this to use indexed coupons instead of par coupons in floating
legs as the default in 'bool IborCoupon::Settings::usingAtParCoupons();'. */
#ifndef QL_USE_INDEXED_COUPON
# define QL_USE_INDEXED_COUPON
#endif
/* Define this to have singletons return different instances for
different threads; in particular, this means that the evaluation
date, the stored index fixings and any other settings will be
per-thread.
*/
#ifndef QL_ENABLE_SESSIONS
# define QL_ENABLE_SESSIONS
#endif
/* Define this to enable the thread-safe observer pattern. You should
enable it if you want to use QuantLib via the SWIG layer within
the JVM or .NET eco system or any environment with an
async garbage collector */
#ifndef QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN
# define QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN
#endif
/* Define this to enable a date resolution down to microseconds and
allow for accurate intraday pricing. */
#ifndef QL_HIGH_RESOLUTION_DATE
# define QL_HIGH_RESOLUTION_DATE
#endif
/* Define this if you want to throw an exception when a notification
loop is detected. Enabling this option is recommended but might
cause existing code to throw. */
#ifndef QL_THROW_IN_CYCLES
# define QL_THROW_IN_CYCLES
#endif
/* Undefine this if you want lazy objects to forward all notifications
instead of just the first. Disabling this option is safer in some
cases but can be a lot slower. */
#ifndef QL_FASTER_LAZY_OBJECTS
//# define QL_FASTER_LAZY_OBJECTS
#endif
/* Define this to use std::any instead of boost::any. */
#ifndef QL_USE_STD_ANY
//# define QL_USE_STD_ANY
#endif
/* Define this to use std::optional instead of boost::optional. */
#ifndef QL_USE_STD_OPTIONAL
//# define QL_USE_STD_OPTIONAL
#endif
/* Define this to use standard smart pointers instead of Boost ones.
Note that std::shared_ptr does not check access and can
cause segmentation faults. */
#ifndef QL_USE_STD_SHARED_PTR
# define QL_USE_STD_SHARED_PTR
#endif
/* Define this to enable the implementation of Null as template functions. */
#ifndef QL_NULL_AS_FUNCTIONS
# define QL_NULL_AS_FUNCTIONS
#endif
/* Define this to enable the parallel unit test runner */
#ifndef QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER
//# define QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER
#endif
#endif
QuantLib-1.39/.ci/userconfig2022.alt.hpp 0000664 0000000 0000000 00000010270 15037373673 0017616 0 ustar 00root root 0000000 0000000 /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2004, 2011 Ferdinando Ametrano
Copyright (C) 2004, 2005 StatPro Italia srl
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
. The license is also available online at
.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#ifndef quantlib_config_hpp
#define quantlib_config_hpp
/***************************************************************
User configuration section:
modify the following definitions to suit your preferences.
Do not modify this file if you are using a Linux/Unix system:
it will not be read by the compiler. The definitions below
will be provided by running ./configure instead.
****************************************************************/
/* Define this if error messages should include current function
information. */
#ifndef QL_ERROR_FUNCTIONS
# define QL_ERROR_FUNCTIONS
#endif
/* Define this if error messages should include file and line information. */
#ifndef QL_ERROR_LINES
# define QL_ERROR_LINES
#endif
/* Define this if tracing messages should be allowed (whether they are
actually emitted will depend on run-time settings.) */
#ifndef QL_ENABLE_TRACING
# define QL_ENABLE_TRACING
#endif
/* Define this if extra safety checks should be performed. This can degrade
performance. */
#ifndef QL_EXTRA_SAFETY_CHECKS
# define QL_EXTRA_SAFETY_CHECKS
#endif
/* Define this to use indexed coupons instead of par coupons in floating
legs as the default in 'bool IborCoupon::Settings::usingAtParCoupons();'. */
#ifndef QL_USE_INDEXED_COUPON
# define QL_USE_INDEXED_COUPON
#endif
/* Define this to have singletons return different instances for
different threads; in particular, this means that the evaluation
date, the stored index fixings and any other settings will be
per-thread.
*/
#ifndef QL_ENABLE_SESSIONS
# define QL_ENABLE_SESSIONS
#endif
/* Define this to enable the thread-safe observer pattern. You should
enable it if you want to use QuantLib via the SWIG layer within
the JVM or .NET eco system or any environment with an
async garbage collector */
#ifndef QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN
# define QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN
#endif
/* Define this to enable a date resolution down to microseconds and
allow for accurate intraday pricing. */
#ifndef QL_HIGH_RESOLUTION_DATE
# define QL_HIGH_RESOLUTION_DATE
#endif
/* Define this if you want to throw an exception when a notification
loop is detected. Enabling this option is recommended but might
cause existing code to throw. */
#ifndef QL_THROW_IN_CYCLES
# define QL_THROW_IN_CYCLES
#endif
/* Undefine this if you want lazy objects to forward all notifications
instead of just the first. Disabling this option is safer in some
cases but can be a lot slower. */
#ifndef QL_FASTER_LAZY_OBJECTS
//# define QL_FASTER_LAZY_OBJECTS
#endif
/* Define this to use std::any instead of boost::any. */
#ifndef QL_USE_STD_ANY
//# define QL_USE_STD_ANY
#endif
/* Define this to use std::optional instead of boost::optional. */
#ifndef QL_USE_STD_OPTIONAL
//# define QL_USE_STD_OPTIONAL
#endif
/* Define this to use standard smart pointers instead of Boost ones.
Note that std::shared_ptr does not check access and can
cause segmentation faults. */
#ifndef QL_USE_STD_SHARED_PTR
# define QL_USE_STD_SHARED_PTR
#endif
/* Define this to enable the implementation of Null as template functions. */
#ifndef QL_NULL_AS_FUNCTIONS
# define QL_NULL_AS_FUNCTIONS
#endif
/* Define this to enable the parallel unit test runner */
#ifndef QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER
//# define QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER
#endif
#endif
QuantLib-1.39/.clang-format 0000664 0000000 0000000 00000002143 15037373673 0015556 0 ustar 00root root 0000000 0000000 ---
Language: Cpp
Standard: c++17
# The following is close to the style we've been using all these years
# without formalizing it. Formatting won't be enforced, but this file
# can help if you want to use the general feel of the library.
# General appearance:
BasedOnStyle: LLVM
IndentWidth: 4
ColumnLimit: 100
NamespaceIndentation: All
MaxEmptyLinesToKeep: 2
FixNamespaceComments: false
# Function declarations:
BinPackParameters: false
AllowShortFunctionsOnASingleLine: Inline
AlwaysBreakTemplateDeclarations: true
# T& x, not T &x:
DerivePointerAlignment: false
PointerAlignment: Left
# QuantLib headers first, then Boost, then std
SortIncludes: true
IncludeBlocks: Merge
IncludeCategories:
- Regex: '^"'
Priority: 1
- Regex: '^