pyquantlib 0.7.0__tar.gz → 0.9.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1409) hide show
  1. pyquantlib-0.9.0/.dockerignore +24 -0
  2. pyquantlib-0.9.0/.github/ISSUE_TEMPLATE/bug_report.md +35 -0
  3. pyquantlib-0.9.0/.github/scripts/build-quantlib-windows.ps1 +56 -0
  4. pyquantlib-0.9.0/.github/workflows/docker.yml +86 -0
  5. pyquantlib-0.9.0/.github/workflows/docs.yml +160 -0
  6. pyquantlib-0.9.0/.github/workflows/linux.yml +115 -0
  7. pyquantlib-0.9.0/.github/workflows/macos.yml +102 -0
  8. pyquantlib-0.9.0/.github/workflows/wheels.yml +213 -0
  9. pyquantlib-0.9.0/.github/workflows/windows.yml +126 -0
  10. pyquantlib-0.9.0/.gitignore +133 -0
  11. pyquantlib-0.9.0/CONTRIBUTING.md +509 -0
  12. pyquantlib-0.9.0/Dockerfile +95 -0
  13. pyquantlib-0.9.0/PKG-INFO +210 -0
  14. pyquantlib-0.9.0/README.md +127 -0
  15. pyquantlib-0.9.0/docs/_static/custom.css +226 -0
  16. pyquantlib-0.9.0/docs/_static/favicon.svg +9 -0
  17. pyquantlib-0.9.0/docs/_static/logo.svg +26 -0
  18. pyquantlib-0.9.0/docs/_static/social-card.png +0 -0
  19. pyquantlib-0.9.0/docs/_static/wordmark-dark.svg +5 -0
  20. pyquantlib-0.9.0/docs/_static/wordmark-light.svg +5 -0
  21. pyquantlib-0.9.0/docs/api/cashflows.md +523 -0
  22. pyquantlib-0.9.0/docs/api/core.md +161 -0
  23. pyquantlib-0.9.0/docs/api/currencies.md +112 -0
  24. pyquantlib-0.9.0/docs/api/experimental.md +128 -0
  25. pyquantlib-0.9.0/docs/api/extensions.md +116 -0
  26. pyquantlib-0.9.0/docs/api/indexes.md +317 -0
  27. pyquantlib-0.9.0/docs/api/instruments.md +840 -0
  28. pyquantlib-0.9.0/docs/api/math.md +501 -0
  29. pyquantlib-0.9.0/docs/api/methods.md +514 -0
  30. pyquantlib-0.9.0/docs/api/models.md +342 -0
  31. pyquantlib-0.9.0/docs/api/pricingengines.md +1032 -0
  32. pyquantlib-0.9.0/docs/api/processes.md +210 -0
  33. pyquantlib-0.9.0/docs/api/quotes.md +136 -0
  34. pyquantlib-0.9.0/docs/api/termstructures.md +833 -0
  35. pyquantlib-0.9.0/docs/api/time.md +186 -0
  36. pyquantlib-0.9.0/docs/architecture.md +228 -0
  37. pyquantlib-0.9.0/docs/building.md +293 -0
  38. pyquantlib-0.9.0/docs/changelog.md +760 -0
  39. pyquantlib-0.9.0/docs/concepts/bridge-pattern-types.md +88 -0
  40. pyquantlib-0.9.0/docs/concepts/calibration.md +74 -0
  41. pyquantlib-0.9.0/docs/concepts/finite-difference.md +63 -0
  42. pyquantlib-0.9.0/docs/concepts/index.md +31 -0
  43. pyquantlib-0.9.0/docs/concepts/pricing-engines.md +66 -0
  44. pyquantlib-0.9.0/docs/concepts/quotes-and-observables.md +84 -0
  45. pyquantlib-0.9.0/docs/concepts/random-numbers.md +59 -0
  46. pyquantlib-0.9.0/docs/concepts/stochastic-processes.md +81 -0
  47. pyquantlib-0.9.0/docs/concepts/term-structures.md +88 -0
  48. pyquantlib-0.9.0/docs/conf.py +337 -0
  49. pyquantlib-0.9.0/docs/contributing.md +292 -0
  50. pyquantlib-0.9.0/docs/cookbook/american-fd.md +105 -0
  51. pyquantlib-0.9.0/docs/cookbook/bootstrap-yield-curve.md +106 -0
  52. pyquantlib-0.9.0/docs/cookbook/compare-engines.md +77 -0
  53. pyquantlib-0.9.0/docs/cookbook/heston-calibration.md +115 -0
  54. pyquantlib-0.9.0/docs/cookbook/index.md +38 -0
  55. pyquantlib-0.9.0/docs/cookbook/mc-convergence.md +98 -0
  56. pyquantlib-0.9.0/docs/cookbook/mc-engine-kwargs.md +122 -0
  57. pyquantlib-0.9.0/docs/cookbook/numpy-interop.md +128 -0
  58. pyquantlib-0.9.0/docs/cookbook/piecewise-mixed-helpers.md +112 -0
  59. pyquantlib-0.9.0/docs/cookbook/scenario-analysis.md +83 -0
  60. pyquantlib-0.9.0/docs/cookbook/spread-option-engines.md +70 -0
  61. pyquantlib-0.9.0/docs/cookbook/vol-surface.md +102 -0
  62. pyquantlib-0.9.0/docs/examples/index.md +54 -0
  63. pyquantlib-0.9.0/docs/extending.md +238 -0
  64. pyquantlib-0.9.0/docs/index.md +147 -0
  65. pyquantlib-0.9.0/docs/installation.md +64 -0
  66. pyquantlib-0.9.0/docs/internals.md +330 -0
  67. pyquantlib-0.9.0/docs/quickstart.md +219 -0
  68. pyquantlib-0.9.0/docs/requirements.txt +10 -0
  69. pyquantlib-0.9.0/examples/bermudan_swaption.ipynb +1042 -0
  70. pyquantlib-0.9.0/examples/bonds.ipynb +433 -0
  71. pyquantlib-0.9.0/examples/cds.ipynb +269 -0
  72. pyquantlib-0.9.0/examples/equity_option.ipynb +640 -0
  73. pyquantlib-0.9.0/examples/hello_pyquantlib.ipynb +366 -0
  74. pyquantlib-0.9.0/examples/inflation_derivatives.ipynb +926 -0
  75. pyquantlib-0.9.0/examples/multicurve_bootstrapping.ipynb +440 -0
  76. pyquantlib-0.9.0/examples/numpy_interoperability.ipynb +922 -0
  77. pyquantlib-0.9.0/examples/replication.ipynb +401 -0
  78. pyquantlib-0.9.0/examples/spread_option.ipynb +460 -0
  79. pyquantlib-0.9.0/examples/svi_smile.ipynb +819 -0
  80. pyquantlib-0.9.0/include/pyquantlib/binding_manager.h +221 -0
  81. pyquantlib-0.9.0/include/pyquantlib/interpolation_helper.h +212 -0
  82. pyquantlib-0.9.0/include/pyquantlib/null_utils.h +62 -0
  83. pyquantlib-0.9.0/include/pyquantlib/pyquantlib.h +714 -0
  84. pyquantlib-0.9.0/include/pyquantlib/shared_ptr_from_python.h +50 -0
  85. pyquantlib-0.9.0/include/pyquantlib/trampolines.h +1264 -0
  86. pyquantlib-0.9.0/include/pyquantlib/version.h +17 -0
  87. pyquantlib-0.9.0/licenseheader.txt +11 -0
  88. pyquantlib-0.9.0/pyquantlib/__init__.pyi +1175 -0
  89. pyquantlib-0.9.0/pyquantlib/_pyquantlib/__init__.pyi +26667 -0
  90. pyquantlib-0.9.0/pyquantlib/_pyquantlib/base.pyi +2318 -0
  91. pyquantlib-0.9.0/pyquantlib/builders.py +406 -0
  92. pyquantlib-0.9.0/pyquantlib/version.py +1 -0
  93. pyquantlib-0.9.0/pyquantlib/version.pyi +3 -0
  94. pyquantlib-0.9.0/scripts/make_social_card.py +96 -0
  95. pyquantlib-0.9.0/src/cashflows/all.cpp +84 -0
  96. pyquantlib-0.9.0/src/cashflows/averagebmacoupon.cpp +113 -0
  97. pyquantlib-0.9.0/src/cashflows/capflooredcoupon.cpp +130 -0
  98. pyquantlib-0.9.0/src/cashflows/capflooredinflationcoupon.cpp +88 -0
  99. pyquantlib-0.9.0/src/cashflows/cmscoupon.cpp +154 -0
  100. pyquantlib-0.9.0/src/cashflows/conundrumpricer.cpp +125 -0
  101. pyquantlib-0.9.0/src/cashflows/coupon.cpp +51 -0
  102. pyquantlib-0.9.0/src/cashflows/couponpricer.cpp +74 -0
  103. pyquantlib-0.9.0/src/cashflows/digitalcmscoupon.cpp +206 -0
  104. pyquantlib-0.9.0/src/cashflows/digitalcoupon.cpp +96 -0
  105. pyquantlib-0.9.0/src/cashflows/digitaliborcoupon.cpp +206 -0
  106. pyquantlib-0.9.0/src/cashflows/dividend.cpp +72 -0
  107. pyquantlib-0.9.0/src/cashflows/duration.cpp +28 -0
  108. pyquantlib-0.9.0/src/cashflows/fixedratecoupon.cpp +125 -0
  109. pyquantlib-0.9.0/src/cashflows/floatingratecoupon.cpp +81 -0
  110. pyquantlib-0.9.0/src/cashflows/iborcoupon.cpp +186 -0
  111. pyquantlib-0.9.0/src/cashflows/inflationcoupon.cpp +57 -0
  112. pyquantlib-0.9.0/src/cashflows/inflationcouponpricer.cpp +122 -0
  113. pyquantlib-0.9.0/src/cashflows/lineartsrpricer.cpp +138 -0
  114. pyquantlib-0.9.0/src/cashflows/overnightindexedcoupon.cpp +168 -0
  115. pyquantlib-0.9.0/src/cashflows/overnightindexedcouponpricer.cpp +74 -0
  116. pyquantlib-0.9.0/src/cashflows/rateaveraging.cpp +31 -0
  117. pyquantlib-0.9.0/src/cashflows/replication.cpp +43 -0
  118. pyquantlib-0.9.0/src/cashflows/simplecashflow.cpp +40 -0
  119. pyquantlib-0.9.0/src/cashflows/yoyinflationcoupon.cpp +163 -0
  120. pyquantlib-0.9.0/src/cashflows/zeroinflationcashflow.cpp +61 -0
  121. pyquantlib-0.9.0/src/core/all.cpp +47 -0
  122. pyquantlib-0.9.0/src/core/cashflow.cpp +40 -0
  123. pyquantlib-0.9.0/src/core/cdspricingmodel.cpp +27 -0
  124. pyquantlib-0.9.0/src/core/compounding.cpp +32 -0
  125. pyquantlib-0.9.0/src/core/constants.cpp +28 -0
  126. pyquantlib-0.9.0/src/core/currency.cpp +48 -0
  127. pyquantlib-0.9.0/src/core/default.cpp +27 -0
  128. pyquantlib-0.9.0/src/core/exchangerate.cpp +51 -0
  129. pyquantlib-0.9.0/src/core/exercise.cpp +50 -0
  130. pyquantlib-0.9.0/src/core/forward.cpp +73 -0
  131. pyquantlib-0.9.0/src/core/index.cpp +42 -0
  132. pyquantlib-0.9.0/src/core/instrument.cpp +42 -0
  133. pyquantlib-0.9.0/src/core/interestrate.cpp +126 -0
  134. pyquantlib-0.9.0/src/core/money.cpp +106 -0
  135. pyquantlib-0.9.0/src/core/option.cpp +68 -0
  136. pyquantlib-0.9.0/src/core/payoff.cpp +38 -0
  137. pyquantlib-0.9.0/src/core/position.cpp +27 -0
  138. pyquantlib-0.9.0/src/core/pricingengine.cpp +52 -0
  139. pyquantlib-0.9.0/src/core/quote.cpp +40 -0
  140. pyquantlib-0.9.0/src/core/settings.cpp +60 -0
  141. pyquantlib-0.9.0/src/core/stochasticprocess.cpp +80 -0
  142. pyquantlib-0.9.0/src/core/termstructure.cpp +55 -0
  143. pyquantlib-0.9.0/src/core/timegrid.cpp +73 -0
  144. pyquantlib-0.9.0/src/currencies/all.cpp +21 -0
  145. pyquantlib-0.9.0/src/currencies/currencies.cpp +795 -0
  146. pyquantlib-0.9.0/src/currencies/exchangeratemanager.cpp +46 -0
  147. pyquantlib-0.9.0/src/experimental/all.cpp +46 -0
  148. pyquantlib-0.9.0/src/experimental/callablebonds/blackcallablebondengine.cpp +81 -0
  149. pyquantlib-0.9.0/src/experimental/callablebonds/callablebond.cpp +134 -0
  150. pyquantlib-0.9.0/src/experimental/callablebonds/callablebondconstantvol.cpp +76 -0
  151. pyquantlib-0.9.0/src/experimental/callablebonds/callablebondvolstructure.cpp +67 -0
  152. pyquantlib-0.9.0/src/experimental/callablebonds/treecallablebondengine.cpp +89 -0
  153. pyquantlib-0.9.0/src/experimental/credit/blackcdsoptionengine.cpp +59 -0
  154. pyquantlib-0.9.0/src/experimental/credit/cdsoption.cpp +79 -0
  155. pyquantlib-0.9.0/src/experimental/variancegamma/analyticvariancegammaengine.cpp +31 -0
  156. pyquantlib-0.9.0/src/experimental/variancegamma/fftvariancegammaengine.cpp +31 -0
  157. pyquantlib-0.9.0/src/experimental/variancegamma/variancegammamodel.cpp +38 -0
  158. pyquantlib-0.9.0/src/experimental/variancegamma/variancegammaprocess.cpp +72 -0
  159. pyquantlib-0.9.0/src/experimental/volatility/svismilesection.cpp +74 -0
  160. pyquantlib-0.9.0/src/indexes/all.cpp +56 -0
  161. pyquantlib-0.9.0/src/indexes/bmaindex.cpp +51 -0
  162. pyquantlib-0.9.0/src/indexes/equityindex.cpp +87 -0
  163. pyquantlib-0.9.0/src/indexes/ibor/eonia.cpp +40 -0
  164. pyquantlib-0.9.0/src/indexes/ibor/estr.cpp +40 -0
  165. pyquantlib-0.9.0/src/indexes/ibor/euribor.cpp +117 -0
  166. pyquantlib-0.9.0/src/indexes/ibor/libor.cpp +120 -0
  167. pyquantlib-0.9.0/src/indexes/ibor/nibor.cpp +39 -0
  168. pyquantlib-0.9.0/src/indexes/ibor/shir.cpp +37 -0
  169. pyquantlib-0.9.0/src/indexes/ibor/sofr.cpp +40 -0
  170. pyquantlib-0.9.0/src/indexes/ibor/sonia.cpp +40 -0
  171. pyquantlib-0.9.0/src/indexes/ibor/usdlibor.cpp +80 -0
  172. pyquantlib-0.9.0/src/indexes/ibor/zaronia.cpp +37 -0
  173. pyquantlib-0.9.0/src/indexes/iborindex.cpp +119 -0
  174. pyquantlib-0.9.0/src/indexes/inflation/aucpi.cpp +71 -0
  175. pyquantlib-0.9.0/src/indexes/inflation/euhicp.cpp +83 -0
  176. pyquantlib-0.9.0/src/indexes/inflation/frhicp.cpp +53 -0
  177. pyquantlib-0.9.0/src/indexes/inflation/ukrpi.cpp +53 -0
  178. pyquantlib-0.9.0/src/indexes/inflation/uscpi.cpp +53 -0
  179. pyquantlib-0.9.0/src/indexes/inflation/zacpi.cpp +53 -0
  180. pyquantlib-0.9.0/src/indexes/inflationindex.cpp +194 -0
  181. pyquantlib-0.9.0/src/indexes/interestrateindex.cpp +65 -0
  182. pyquantlib-0.9.0/src/indexes/region.cpp +69 -0
  183. pyquantlib-0.9.0/src/indexes/swap/swapindexes.cpp +106 -0
  184. pyquantlib-0.9.0/src/indexes/swapindex.cpp +112 -0
  185. pyquantlib-0.9.0/src/indexes/swapspreadindex.cpp +46 -0
  186. pyquantlib-0.9.0/src/instruments/all.cpp +170 -0
  187. pyquantlib-0.9.0/src/instruments/asianoption.cpp +72 -0
  188. pyquantlib-0.9.0/src/instruments/assetswap.cpp +73 -0
  189. pyquantlib-0.9.0/src/instruments/averagetype.cpp +26 -0
  190. pyquantlib-0.9.0/src/instruments/barrieroption.cpp +50 -0
  191. pyquantlib-0.9.0/src/instruments/barriertype.cpp +28 -0
  192. pyquantlib-0.9.0/src/instruments/basketoption.cpp +107 -0
  193. pyquantlib-0.9.0/src/instruments/bond.cpp +179 -0
  194. pyquantlib-0.9.0/src/instruments/bondforward.cpp +78 -0
  195. pyquantlib-0.9.0/src/instruments/bonds/amortizingcmsratebond.cpp +68 -0
  196. pyquantlib-0.9.0/src/instruments/bonds/amortizingfixedratebond.cpp +80 -0
  197. pyquantlib-0.9.0/src/instruments/bonds/amortizingfloatingratebond.cpp +85 -0
  198. pyquantlib-0.9.0/src/instruments/bonds/cmsratebond.cpp +68 -0
  199. pyquantlib-0.9.0/src/instruments/bonds/convertiblebonds.cpp +159 -0
  200. pyquantlib-0.9.0/src/instruments/bonds/cpibond.cpp +90 -0
  201. pyquantlib-0.9.0/src/instruments/bonds/fixedratebond.cpp +75 -0
  202. pyquantlib-0.9.0/src/instruments/bonds/floatingratebond.cpp +79 -0
  203. pyquantlib-0.9.0/src/instruments/bonds/zerocouponbond.cpp +36 -0
  204. pyquantlib-0.9.0/src/instruments/callabilityschedule.cpp +46 -0
  205. pyquantlib-0.9.0/src/instruments/capfloor.cpp +109 -0
  206. pyquantlib-0.9.0/src/instruments/claim.cpp +51 -0
  207. pyquantlib-0.9.0/src/instruments/cliquetoption.cpp +36 -0
  208. pyquantlib-0.9.0/src/instruments/complexchooseroption.cpp +36 -0
  209. pyquantlib-0.9.0/src/instruments/compositeinstrument.cpp +38 -0
  210. pyquantlib-0.9.0/src/instruments/compoundoption.cpp +37 -0
  211. pyquantlib-0.9.0/src/instruments/constnotionalcrosscurrencybasisswap.cpp +125 -0
  212. pyquantlib-0.9.0/src/instruments/constnotionalcrosscurrencyfixedvsfloatingswap.cpp +151 -0
  213. pyquantlib-0.9.0/src/instruments/constnotionalcrosscurrencyswap.cpp +74 -0
  214. pyquantlib-0.9.0/src/instruments/creditdefaultswap.cpp +162 -0
  215. pyquantlib-0.9.0/src/instruments/doublebarrieroption.cpp +48 -0
  216. pyquantlib-0.9.0/src/instruments/doublebarriertype.cpp +28 -0
  217. pyquantlib-0.9.0/src/instruments/equitytotalreturnswap.cpp +123 -0
  218. pyquantlib-0.9.0/src/instruments/fixedvsfloatingswap.cpp +112 -0
  219. pyquantlib-0.9.0/src/instruments/floatfloatswap.cpp +207 -0
  220. pyquantlib-0.9.0/src/instruments/floatfloatswaption.cpp +48 -0
  221. pyquantlib-0.9.0/src/instruments/forwardrateagreement.cpp +87 -0
  222. pyquantlib-0.9.0/src/instruments/forwardvanillaoption.cpp +36 -0
  223. pyquantlib-0.9.0/src/instruments/futures.cpp +31 -0
  224. pyquantlib-0.9.0/src/instruments/fxforward.cpp +81 -0
  225. pyquantlib-0.9.0/src/instruments/holderextensibleoption.cpp +38 -0
  226. pyquantlib-0.9.0/src/instruments/inflationcapfloor.cpp +120 -0
  227. pyquantlib-0.9.0/src/instruments/lookbackoption.cpp +81 -0
  228. pyquantlib-0.9.0/src/instruments/makecapfloor.cpp +100 -0
  229. pyquantlib-0.9.0/src/instruments/makeois.cpp +209 -0
  230. pyquantlib-0.9.0/src/instruments/makeswaption.cpp +89 -0
  231. pyquantlib-0.9.0/src/instruments/makevanillaswap.cpp +193 -0
  232. pyquantlib-0.9.0/src/instruments/makeyoyinflationcapfloor.cpp +117 -0
  233. pyquantlib-0.9.0/src/instruments/margrabeoption.cpp +40 -0
  234. pyquantlib-0.9.0/src/instruments/multiassetoption.cpp +53 -0
  235. pyquantlib-0.9.0/src/instruments/multipleresetsswap.cpp +65 -0
  236. pyquantlib-0.9.0/src/instruments/nonstandardswap.cpp +160 -0
  237. pyquantlib-0.9.0/src/instruments/nonstandardswaption.cpp +53 -0
  238. pyquantlib-0.9.0/src/instruments/oneassetoption.cpp +82 -0
  239. pyquantlib-0.9.0/src/instruments/overnightindexedswap.cpp +94 -0
  240. pyquantlib-0.9.0/src/instruments/overnightindexfuture.cpp +60 -0
  241. pyquantlib-0.9.0/src/instruments/partialtimebarrieroption.cpp +50 -0
  242. pyquantlib-0.9.0/src/instruments/payoffs.cpp +104 -0
  243. pyquantlib-0.9.0/src/instruments/perpetualfutures.cpp +55 -0
  244. pyquantlib-0.9.0/src/instruments/quantoforwardvanillaoption.cpp +42 -0
  245. pyquantlib-0.9.0/src/instruments/quantovanillaoption.cpp +39 -0
  246. pyquantlib-0.9.0/src/instruments/simplechooseroption.cpp +32 -0
  247. pyquantlib-0.9.0/src/instruments/softbarrieroption.cpp +47 -0
  248. pyquantlib-0.9.0/src/instruments/swap.cpp +118 -0
  249. pyquantlib-0.9.0/src/instruments/swaption.cpp +110 -0
  250. pyquantlib-0.9.0/src/instruments/twoassetbarrieroption.cpp +38 -0
  251. pyquantlib-0.9.0/src/instruments/twoassetcorrelationoption.cpp +34 -0
  252. pyquantlib-0.9.0/src/instruments/vanillaoption.cpp +32 -0
  253. pyquantlib-0.9.0/src/instruments/vanillaswap.cpp +45 -0
  254. pyquantlib-0.9.0/src/instruments/vanillaswingoption.cpp +52 -0
  255. pyquantlib-0.9.0/src/instruments/varianceswap.cpp +45 -0
  256. pyquantlib-0.9.0/src/instruments/writerextensibleoption.cpp +41 -0
  257. pyquantlib-0.9.0/src/instruments/yearonyearinflationswap.cpp +108 -0
  258. pyquantlib-0.9.0/src/instruments/zerocouponinflationswap.cpp +118 -0
  259. pyquantlib-0.9.0/src/instruments/zerocouponswap.cpp +78 -0
  260. pyquantlib-0.9.0/src/main.cpp +59 -0
  261. pyquantlib-0.9.0/src/math/all.cpp +119 -0
  262. pyquantlib-0.9.0/src/math/array.cpp +218 -0
  263. pyquantlib-0.9.0/src/math/distributions/bivariatenormaldistribution.cpp +32 -0
  264. pyquantlib-0.9.0/src/math/distributions/normaldistribution.cpp +64 -0
  265. pyquantlib-0.9.0/src/math/integrals/expsinhintegral.cpp +41 -0
  266. pyquantlib-0.9.0/src/math/integrals/gaussianquadratures.cpp +151 -0
  267. pyquantlib-0.9.0/src/math/integrals/gausslobattointegral.cpp +42 -0
  268. pyquantlib-0.9.0/src/math/integrals/integral.cpp +46 -0
  269. pyquantlib-0.9.0/src/math/integrals/kronrodintegral.cpp +49 -0
  270. pyquantlib-0.9.0/src/math/integrals/segmentintegral.cpp +29 -0
  271. pyquantlib-0.9.0/src/math/integrals/simpsonintegral.cpp +30 -0
  272. pyquantlib-0.9.0/src/math/integrals/tanhsinhintegral.cpp +34 -0
  273. pyquantlib-0.9.0/src/math/integrals/trapezoidintegral.cpp +38 -0
  274. pyquantlib-0.9.0/src/math/interpolations/backwardflatinterpolation.cpp +27 -0
  275. pyquantlib-0.9.0/src/math/interpolations/backwardflatlinearinterpolation.cpp +26 -0
  276. pyquantlib-0.9.0/src/math/interpolations/bicubicsplineinterpolation.cpp +41 -0
  277. pyquantlib-0.9.0/src/math/interpolations/bilinearinterpolation.cpp +26 -0
  278. pyquantlib-0.9.0/src/math/interpolations/chebyshevinterpolation.cpp +58 -0
  279. pyquantlib-0.9.0/src/math/interpolations/convexmonotoneinterpolation.cpp +54 -0
  280. pyquantlib-0.9.0/src/math/interpolations/cubicinterpolation.cpp +79 -0
  281. pyquantlib-0.9.0/src/math/interpolations/extrapolation.cpp +33 -0
  282. pyquantlib-0.9.0/src/math/interpolations/flatextrapolation.cpp +31 -0
  283. pyquantlib-0.9.0/src/math/interpolations/flatextrapolation2d.cpp +30 -0
  284. pyquantlib-0.9.0/src/math/interpolations/forwardflatinterpolation.cpp +26 -0
  285. pyquantlib-0.9.0/src/math/interpolations/interpolation.cpp +53 -0
  286. pyquantlib-0.9.0/src/math/interpolations/interpolation2d.cpp +52 -0
  287. pyquantlib-0.9.0/src/math/interpolations/lagrangeinterpolation.cpp +36 -0
  288. pyquantlib-0.9.0/src/math/interpolations/linearinterpolation.cpp +26 -0
  289. pyquantlib-0.9.0/src/math/interpolations/loginterpolation.cpp +117 -0
  290. pyquantlib-0.9.0/src/math/interpolations/loglinearinterpolation.cpp +26 -0
  291. pyquantlib-0.9.0/src/math/interpolations/mixedinterpolation.cpp +97 -0
  292. pyquantlib-0.9.0/src/math/interpolations/sabrinterpolation.cpp +104 -0
  293. pyquantlib-0.9.0/src/math/matrix.cpp +229 -0
  294. pyquantlib-0.9.0/src/math/matrixutilities/svd.cpp +48 -0
  295. pyquantlib-0.9.0/src/math/matrixutilities/symmetricschurdecomposition.cpp +35 -0
  296. pyquantlib-0.9.0/src/math/ode/adaptiverungekutta.cpp +54 -0
  297. pyquantlib-0.9.0/src/math/optimization/bfgs.cpp +28 -0
  298. pyquantlib-0.9.0/src/math/optimization/conjugategradient.cpp +29 -0
  299. pyquantlib-0.9.0/src/math/optimization/constraint.cpp +50 -0
  300. pyquantlib-0.9.0/src/math/optimization/costfunction.cpp +34 -0
  301. pyquantlib-0.9.0/src/math/optimization/differentialevolution.cpp +120 -0
  302. pyquantlib-0.9.0/src/math/optimization/endcriteria.cpp +102 -0
  303. pyquantlib-0.9.0/src/math/optimization/lbfgsb.cpp +41 -0
  304. pyquantlib-0.9.0/src/math/optimization/levenbergmarquardt.cpp +31 -0
  305. pyquantlib-0.9.0/src/math/optimization/method.cpp +31 -0
  306. pyquantlib-0.9.0/src/math/optimization/problem.cpp +49 -0
  307. pyquantlib-0.9.0/src/math/optimization/simplex.cpp +31 -0
  308. pyquantlib-0.9.0/src/math/optimization/steepestdescent.cpp +29 -0
  309. pyquantlib-0.9.0/src/math/randomnumbers/boxmullergaussianrng.cpp +38 -0
  310. pyquantlib-0.9.0/src/math/randomnumbers/burley2020sobolrsg.cpp +46 -0
  311. pyquantlib-0.9.0/src/math/randomnumbers/haltonrsg.cpp +40 -0
  312. pyquantlib-0.9.0/src/math/randomnumbers/inversecumulativerng.cpp +41 -0
  313. pyquantlib-0.9.0/src/math/randomnumbers/inversecumulativersg.cpp +79 -0
  314. pyquantlib-0.9.0/src/math/randomnumbers/mt19937uniformrng.cpp +38 -0
  315. pyquantlib-0.9.0/src/math/randomnumbers/randomsequencegenerator.cpp +47 -0
  316. pyquantlib-0.9.0/src/math/randomnumbers/sobolbrownianbridgersg.cpp +67 -0
  317. pyquantlib-0.9.0/src/math/randomnumbers/sobolrsg.cpp +61 -0
  318. pyquantlib-0.9.0/src/math/richardsonextrapolation.cpp +42 -0
  319. pyquantlib-0.9.0/src/math/rounding.cpp +80 -0
  320. pyquantlib-0.9.0/src/math/solvers1d/solvers1d.cpp +117 -0
  321. pyquantlib-0.9.0/src/math/statistics/incrementalstatistics.cpp +79 -0
  322. pyquantlib-0.9.0/src/math/statistics/sequencestatistics.cpp +120 -0
  323. pyquantlib-0.9.0/src/math/statistics/statistics.cpp +138 -0
  324. pyquantlib-0.9.0/src/methods/all.cpp +189 -0
  325. pyquantlib-0.9.0/src/methods/finitedifferences/boundarycondition.cpp +40 -0
  326. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/concentrating1dmesher.cpp +51 -0
  327. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/exponentialjump1dmesher.cpp +48 -0
  328. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdm1dmesher.cpp +45 -0
  329. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmblackscholesmesher.cpp +72 -0
  330. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmcev1dmesher.cpp +44 -0
  331. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmhestonvariancemesher.cpp +60 -0
  332. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmmesher.cpp +42 -0
  333. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmmeshercomposite.cpp +57 -0
  334. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmsimpleprocess1dmesher.cpp +44 -0
  335. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/glued1dmesher.cpp +30 -0
  336. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/predefined1dmesher.cpp +31 -0
  337. pyquantlib-0.9.0/src/methods/finitedifferences/meshers/uniform1dmesher.cpp +30 -0
  338. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdm2dblackscholesop.cpp +48 -0
  339. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmbatesop.cpp +41 -0
  340. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmblackscholesfwdop.cpp +46 -0
  341. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmblackscholesop.cpp +50 -0
  342. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmcevop.cpp +49 -0
  343. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmg2op.cpp +35 -0
  344. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhestonfwdop.cpp +40 -0
  345. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhestonhullwhiteop.cpp +37 -0
  346. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhestonop.cpp +41 -0
  347. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhullwhiteop.cpp +34 -0
  348. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearop.cpp +29 -0
  349. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearopcomposite.cpp +44 -0
  350. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearopiterator.cpp +47 -0
  351. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearoplayout.cpp +74 -0
  352. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlocalvolfwdop.cpp +41 -0
  353. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmornsteinuhlenbeckop.cpp +37 -0
  354. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmsabrop.cpp +36 -0
  355. pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmsquarerootfwdop.cpp +51 -0
  356. pyquantlib-0.9.0/src/methods/finitedifferences/operators/firstderivativeop.cpp +31 -0
  357. pyquantlib-0.9.0/src/methods/finitedifferences/operators/ninepointlinearop.cpp +37 -0
  358. pyquantlib-0.9.0/src/methods/finitedifferences/operators/nthorderderivativeop.cpp +33 -0
  359. pyquantlib-0.9.0/src/methods/finitedifferences/operators/secondderivativeop.cpp +31 -0
  360. pyquantlib-0.9.0/src/methods/finitedifferences/operators/secondordermixedderivativeop.cpp +31 -0
  361. pyquantlib-0.9.0/src/methods/finitedifferences/operators/triplebandlinearop.cpp +56 -0
  362. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/craigsneydscheme.cpp +42 -0
  363. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/cranknicolsonscheme.cpp +46 -0
  364. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/douglasscheme.cpp +41 -0
  365. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/expliciteulerscheme.cpp +40 -0
  366. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/hundsdorferscheme.cpp +42 -0
  367. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/impliciteulerscheme.cpp +52 -0
  368. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/methodoflinesscheme.cpp +42 -0
  369. pyquantlib-0.9.0/src/methods/finitedifferences/schemes/modifiedcraigsneydscheme.cpp +42 -0
  370. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm1dimsolver.cpp +48 -0
  371. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm2dblackscholessolver.cpp +96 -0
  372. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm2dimsolver.cpp +57 -0
  373. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm3dimsolver.cpp +42 -0
  374. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmbackwardsolver.cpp +101 -0
  375. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmbatessolver.cpp +81 -0
  376. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmblackscholessolver.cpp +98 -0
  377. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmg2solver.cpp +55 -0
  378. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmhestonsolver.cpp +96 -0
  379. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmhullwhitesolver.cpp +55 -0
  380. pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmsolverdesc.cpp +56 -0
  381. pyquantlib-0.9.0/src/methods/finitedifferences/stepcondition.cpp +33 -0
  382. pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmamericanstepcondition.cpp +34 -0
  383. pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmarithmeticaveragecondition.cpp +37 -0
  384. pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmbermudanstepcondition.cpp +45 -0
  385. pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmsimpleswingcondition.cpp +40 -0
  386. pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmsnapshotcondition.cpp +36 -0
  387. pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmstepconditioncomposite.cpp +58 -0
  388. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/bsmrndcalculator.cpp +32 -0
  389. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/cevrndcalculator.cpp +34 -0
  390. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmdirichletboundary.cpp +36 -0
  391. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmdiscountdirichletboundary.cpp +40 -0
  392. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmdividendhandler.cpp +51 -0
  393. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmhestongreensfct.cpp +28 -0
  394. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdminnervaluecalculator.cpp +92 -0
  395. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmquantohelper.cpp +56 -0
  396. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmtimedepdirichletboundary.cpp +38 -0
  397. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/gbsmrndcalculator.cpp +32 -0
  398. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/hestonrndcalculator.cpp +34 -0
  399. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/localvolrndcalculator.cpp +91 -0
  400. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/riskneutraldensitycalculator.cpp +36 -0
  401. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/smilesectionrndcalculator.cpp +62 -0
  402. pyquantlib-0.9.0/src/methods/finitedifferences/utilities/squarerootprocessrndcalculator.cpp +41 -0
  403. pyquantlib-0.9.0/src/methods/montecarlo/brownianbridge.cpp +67 -0
  404. pyquantlib-0.9.0/src/methods/montecarlo/lsmbasissystem.cpp +33 -0
  405. pyquantlib-0.9.0/src/methods/montecarlo/multipath.cpp +48 -0
  406. pyquantlib-0.9.0/src/methods/montecarlo/multipathgenerator.cpp +72 -0
  407. pyquantlib-0.9.0/src/methods/montecarlo/path.cpp +52 -0
  408. pyquantlib-0.9.0/src/methods/montecarlo/pathgenerator.cpp +87 -0
  409. pyquantlib-0.9.0/src/methods/montecarlo/sample.cpp +73 -0
  410. pyquantlib-0.9.0/src/models/all.cpp +73 -0
  411. pyquantlib-0.9.0/src/models/calibrationhelper.cpp +71 -0
  412. pyquantlib-0.9.0/src/models/equity/batesmodel.cpp +32 -0
  413. pyquantlib-0.9.0/src/models/equity/gjrgarchmodel.cpp +44 -0
  414. pyquantlib-0.9.0/src/models/equity/hestonmodel.cpp +45 -0
  415. pyquantlib-0.9.0/src/models/equity/hestonmodelhelper.cpp +91 -0
  416. pyquantlib-0.9.0/src/models/equity/hestonslvfdmmodel.cpp +165 -0
  417. pyquantlib-0.9.0/src/models/equity/hestonslvmcmodel.cpp +76 -0
  418. pyquantlib-0.9.0/src/models/marketmodels/browniangenerator.cpp +46 -0
  419. pyquantlib-0.9.0/src/models/marketmodels/browniangenerators/mtbrowniangenerator.cpp +38 -0
  420. pyquantlib-0.9.0/src/models/marketmodels/browniangenerators/sobolbrowniangenerator.cpp +84 -0
  421. pyquantlib-0.9.0/src/models/model.cpp +96 -0
  422. pyquantlib-0.9.0/src/models/parameter.cpp +50 -0
  423. pyquantlib-0.9.0/src/models/piecewisetimedependenthestonmodel.cpp +62 -0
  424. pyquantlib-0.9.0/src/models/shortrate/calibrationhelpers/caphelper.cpp +79 -0
  425. pyquantlib-0.9.0/src/models/shortrate/calibrationhelpers/swaptionhelper.cpp +216 -0
  426. pyquantlib-0.9.0/src/models/shortrate/onefactormodel.cpp +40 -0
  427. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/blackkarasinski.cpp +44 -0
  428. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/coxingersollross.cpp +38 -0
  429. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/extendedcoxingersollross.cpp +53 -0
  430. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/gaussian1dmodel.cpp +113 -0
  431. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/gsr.cpp +142 -0
  432. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/hullwhite.cpp +61 -0
  433. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/markovfunctional.cpp +244 -0
  434. pyquantlib-0.9.0/src/models/shortrate/onefactormodels/vasicek.cpp +46 -0
  435. pyquantlib-0.9.0/src/models/shortrate/twofactormodel.cpp +29 -0
  436. pyquantlib-0.9.0/src/models/shortrate/twofactormodels/g2.cpp +72 -0
  437. pyquantlib-0.9.0/src/patterns/all.cpp +23 -0
  438. pyquantlib-0.9.0/src/patterns/lazyobject.cpp +43 -0
  439. pyquantlib-0.9.0/src/patterns/observable.cpp +66 -0
  440. pyquantlib-0.9.0/src/pricingengines/all.cpp +285 -0
  441. pyquantlib-0.9.0/src/pricingengines/asian/analytic_cont_geom_av_price.cpp +32 -0
  442. pyquantlib-0.9.0/src/pricingengines/asian/analytic_discr_geom_av_price.cpp +32 -0
  443. pyquantlib-0.9.0/src/pricingengines/asian/analytic_discr_geom_av_strike.cpp +32 -0
  444. pyquantlib-0.9.0/src/pricingengines/asian/choiasianengine.cpp +35 -0
  445. pyquantlib-0.9.0/src/pricingengines/asian/continuousarithmeticasianlevyengine.cpp +43 -0
  446. pyquantlib-0.9.0/src/pricingengines/asian/fdblackscholesasianengine.cpp +38 -0
  447. pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_arith_av_price.cpp +72 -0
  448. pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_arith_av_price_heston.cpp +94 -0
  449. pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_arith_av_strike.cpp +68 -0
  450. pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_geom_av_price.cpp +68 -0
  451. pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_geom_av_price_heston.cpp +90 -0
  452. pyquantlib-0.9.0/src/pricingengines/asian/turnbullwakemanasianengine.cpp +31 -0
  453. pyquantlib-0.9.0/src/pricingengines/bacheliercalculator.cpp +86 -0
  454. pyquantlib-0.9.0/src/pricingengines/barrier/analyticbarrierengine.cpp +31 -0
  455. pyquantlib-0.9.0/src/pricingengines/barrier/analyticbinarybarrierengine.cpp +31 -0
  456. pyquantlib-0.9.0/src/pricingengines/barrier/analyticdoublebarrierbinaryengine.cpp +31 -0
  457. pyquantlib-0.9.0/src/pricingengines/barrier/analyticdoublebarrierengine.cpp +32 -0
  458. pyquantlib-0.9.0/src/pricingengines/barrier/analyticpartialtimebarrieroptionengine.cpp +31 -0
  459. pyquantlib-0.9.0/src/pricingengines/barrier/analyticsoftbarrierengine.cpp +31 -0
  460. pyquantlib-0.9.0/src/pricingengines/barrier/analytictwoassetbarrierengine.cpp +46 -0
  461. pyquantlib-0.9.0/src/pricingengines/barrier/binomialbarrierengine.cpp +95 -0
  462. pyquantlib-0.9.0/src/pricingengines/barrier/fdblackscholesbarrierengine.cpp +39 -0
  463. pyquantlib-0.9.0/src/pricingengines/barrier/fdblackscholesrebateengine.cpp +39 -0
  464. pyquantlib-0.9.0/src/pricingengines/barrier/fdhestonbarrierengine.cpp +39 -0
  465. pyquantlib-0.9.0/src/pricingengines/barrier/fdhestondoublebarrierengine.cpp +39 -0
  466. pyquantlib-0.9.0/src/pricingengines/barrier/fdhestonrebateengine.cpp +39 -0
  467. pyquantlib-0.9.0/src/pricingengines/barrier/mcbarrierengine.cpp +106 -0
  468. pyquantlib-0.9.0/src/pricingengines/barrier/mcdoublebarrierengine.cpp +100 -0
  469. pyquantlib-0.9.0/src/pricingengines/basket/bjerksundstenslandspreadengine.cpp +32 -0
  470. pyquantlib-0.9.0/src/pricingengines/basket/choibasketengine.cpp +39 -0
  471. pyquantlib-0.9.0/src/pricingengines/basket/denglizhoubasketengine.cpp +32 -0
  472. pyquantlib-0.9.0/src/pricingengines/basket/fd2dblackscholesvanillaengine.cpp +37 -0
  473. pyquantlib-0.9.0/src/pricingengines/basket/fdndimblackscholesvanillaengine.cpp +49 -0
  474. pyquantlib-0.9.0/src/pricingengines/basket/gaussiancopulaspreadengine.cpp +36 -0
  475. pyquantlib-0.9.0/src/pricingengines/basket/kirkengine.cpp +30 -0
  476. pyquantlib-0.9.0/src/pricingengines/basket/mcamericanbasketengine.cpp +87 -0
  477. pyquantlib-0.9.0/src/pricingengines/basket/mceuropeanbasketengine.cpp +97 -0
  478. pyquantlib-0.9.0/src/pricingengines/basket/operatorsplittingspreadengine.cpp +32 -0
  479. pyquantlib-0.9.0/src/pricingengines/basket/pearsonspreadengine.cpp +36 -0
  480. pyquantlib-0.9.0/src/pricingengines/basket/singlefactorbsmbasketengine.cpp +34 -0
  481. pyquantlib-0.9.0/src/pricingengines/basket/spreadblackscholesvanillaengine.cpp +47 -0
  482. pyquantlib-0.9.0/src/pricingengines/basket/stulzengine.cpp +31 -0
  483. pyquantlib-0.9.0/src/pricingengines/blackcalculator.cpp +86 -0
  484. pyquantlib-0.9.0/src/pricingengines/blackformula.cpp +150 -0
  485. pyquantlib-0.9.0/src/pricingengines/bond/binomialconvertibleengine.cpp +140 -0
  486. pyquantlib-0.9.0/src/pricingengines/bond/bondfunctions.cpp +178 -0
  487. pyquantlib-0.9.0/src/pricingengines/bond/discountingbondengine.cpp +47 -0
  488. pyquantlib-0.9.0/src/pricingengines/capfloor/analyticcapfloorengine.cpp +46 -0
  489. pyquantlib-0.9.0/src/pricingengines/capfloor/bacheliercapfloorengine.cpp +65 -0
  490. pyquantlib-0.9.0/src/pricingengines/capfloor/blackcapfloorengine.cpp +69 -0
  491. pyquantlib-0.9.0/src/pricingengines/capfloor/gaussian1dcapfloorengine.cpp +40 -0
  492. pyquantlib-0.9.0/src/pricingengines/capfloor/treecapfloorengine.cpp +57 -0
  493. pyquantlib-0.9.0/src/pricingengines/cliquet/analyticcliquetengine.cpp +31 -0
  494. pyquantlib-0.9.0/src/pricingengines/credit/isdacdsengine.cpp +90 -0
  495. pyquantlib-0.9.0/src/pricingengines/credit/midpointcdsengine.cpp +55 -0
  496. pyquantlib-0.9.0/src/pricingengines/exotic/analyticamericanmargrabeengine.cpp +35 -0
  497. pyquantlib-0.9.0/src/pricingengines/exotic/analyticcomplexchooserengine.cpp +31 -0
  498. pyquantlib-0.9.0/src/pricingengines/exotic/analyticcompoundoptionengine.cpp +31 -0
  499. pyquantlib-0.9.0/src/pricingengines/exotic/analyticeuropeanmargrabeengine.cpp +35 -0
  500. pyquantlib-0.9.0/src/pricingengines/exotic/analyticholderextensibleoptionengine.cpp +31 -0
  501. pyquantlib-0.9.0/src/pricingengines/exotic/analyticsimplechooserengine.cpp +31 -0
  502. pyquantlib-0.9.0/src/pricingengines/exotic/analytictwoassetcorrelationengine.cpp +47 -0
  503. pyquantlib-0.9.0/src/pricingengines/exotic/analyticwriterextensibleoptionengine.cpp +31 -0
  504. pyquantlib-0.9.0/src/pricingengines/forward/discountingfxforwardengine.cpp +59 -0
  505. pyquantlib-0.9.0/src/pricingengines/forward/forwardengine.cpp +45 -0
  506. pyquantlib-0.9.0/src/pricingengines/forward/mcforwardeuropeanbsengine.cpp +100 -0
  507. pyquantlib-0.9.0/src/pricingengines/forward/mcforwardeuropeanhestonengine.cpp +100 -0
  508. pyquantlib-0.9.0/src/pricingengines/forward/replicatingvarianceswapengine.cpp +36 -0
  509. pyquantlib-0.9.0/src/pricingengines/futures/discountingperpetualfuturesengine.cpp +99 -0
  510. pyquantlib-0.9.0/src/pricingengines/genericmodelengine.cpp +38 -0
  511. pyquantlib-0.9.0/src/pricingengines/inflation/inflationcapfloorengines.cpp +126 -0
  512. pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuousfixedlookback.cpp +31 -0
  513. pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuousfloatinglookback.cpp +31 -0
  514. pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuouspartialfixedlookback.cpp +31 -0
  515. pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuouspartialfloatinglookback.cpp +31 -0
  516. pyquantlib-0.9.0/src/pricingengines/quanto/quantoengine.cpp +96 -0
  517. pyquantlib-0.9.0/src/pricingengines/swap/discountingconstnotionalcrosscurrencyswapengine.cpp +100 -0
  518. pyquantlib-0.9.0/src/pricingengines/swap/discountingswapengine.cpp +53 -0
  519. pyquantlib-0.9.0/src/pricingengines/swaption/blackswaptionengine.cpp +118 -0
  520. pyquantlib-0.9.0/src/pricingengines/swaption/fdg2swaptionengine.cpp +37 -0
  521. pyquantlib-0.9.0/src/pricingengines/swaption/fdhullwhiteswaptionengine.cpp +36 -0
  522. pyquantlib-0.9.0/src/pricingengines/swaption/g2swaptionengine.cpp +31 -0
  523. pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1dfloatfloatswaptionengine.cpp +58 -0
  524. pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1djamshidianswaptionengine.cpp +32 -0
  525. pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1dnonstandardswaptionengine.cpp +56 -0
  526. pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1dswaptionengine.cpp +53 -0
  527. pyquantlib-0.9.0/src/pricingengines/swaption/jamshidianswaptionengine.cpp +45 -0
  528. pyquantlib-0.9.0/src/pricingengines/swaption/treeswaptionengine.cpp +61 -0
  529. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticbsmhullwhiteengine.cpp +37 -0
  530. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticcevengine.cpp +60 -0
  531. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticdigitalamericanengine.cpp +41 -0
  532. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticdividendeuropeanengine.cpp +36 -0
  533. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticeuropeanengine.cpp +44 -0
  534. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticeuropeanvasicekengine.cpp +34 -0
  535. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticgjrgarchengine.cpp +30 -0
  536. pyquantlib-0.9.0/src/pricingengines/vanilla/analytich1hwengine.cpp +49 -0
  537. pyquantlib-0.9.0/src/pricingengines/vanilla/analytichestonengine.cpp +111 -0
  538. pyquantlib-0.9.0/src/pricingengines/vanilla/analytichestonhullwhiteengine.cpp +45 -0
  539. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticpdfhestonengine.cpp +40 -0
  540. pyquantlib-0.9.0/src/pricingengines/vanilla/analyticptdhestonengine.cpp +51 -0
  541. pyquantlib-0.9.0/src/pricingengines/vanilla/baroneadesiwhaleyengine.cpp +40 -0
  542. pyquantlib-0.9.0/src/pricingengines/vanilla/batesengine.cpp +35 -0
  543. pyquantlib-0.9.0/src/pricingengines/vanilla/binomialengine.cpp +84 -0
  544. pyquantlib-0.9.0/src/pricingengines/vanilla/bjerksundstenslandengine.cpp +32 -0
  545. pyquantlib-0.9.0/src/pricingengines/vanilla/cashdividendeuropeanengine.cpp +46 -0
  546. pyquantlib-0.9.0/src/pricingengines/vanilla/coshestonengine.cpp +50 -0
  547. pyquantlib-0.9.0/src/pricingengines/vanilla/exponentialfittinghestonengine.cpp +44 -0
  548. pyquantlib-0.9.0/src/pricingengines/vanilla/fdbatesvanillaengine.cpp +53 -0
  549. pyquantlib-0.9.0/src/pricingengines/vanilla/fdblackscholesshoutengine.cpp +51 -0
  550. pyquantlib-0.9.0/src/pricingengines/vanilla/fdblackscholesvanillaengine.cpp +62 -0
  551. pyquantlib-0.9.0/src/pricingengines/vanilla/fdcevvanillaengine.cpp +68 -0
  552. pyquantlib-0.9.0/src/pricingengines/vanilla/fdhestonhullwhitevanillaengine.cpp +63 -0
  553. pyquantlib-0.9.0/src/pricingengines/vanilla/fdhestonvanillaengine.cpp +99 -0
  554. pyquantlib-0.9.0/src/pricingengines/vanilla/fdornsteinuhlenbeckvanillaengine.cpp +57 -0
  555. pyquantlib-0.9.0/src/pricingengines/vanilla/fdsabrvanillaengine.cpp +74 -0
  556. pyquantlib-0.9.0/src/pricingengines/vanilla/fdsimplebsswingengine.cpp +37 -0
  557. pyquantlib-0.9.0/src/pricingengines/vanilla/hestonexpansionengine.cpp +41 -0
  558. pyquantlib-0.9.0/src/pricingengines/vanilla/integralengine.cpp +29 -0
  559. pyquantlib-0.9.0/src/pricingengines/vanilla/juquadraticengine.cpp +32 -0
  560. pyquantlib-0.9.0/src/pricingengines/vanilla/mcamericanengine.cpp +129 -0
  561. pyquantlib-0.9.0/src/pricingengines/vanilla/mcdigitalengine.cpp +100 -0
  562. pyquantlib-0.9.0/src/pricingengines/vanilla/mceuropeanengine.cpp +113 -0
  563. pyquantlib-0.9.0/src/pricingengines/vanilla/mceuropeangjrgarchengine.cpp +97 -0
  564. pyquantlib-0.9.0/src/pricingengines/vanilla/mceuropeanhestonengine.cpp +107 -0
  565. pyquantlib-0.9.0/src/pricingengines/vanilla/qdfpamericanengine.cpp +87 -0
  566. pyquantlib-0.9.0/src/pricingengines/vanilla/qdplusamericanengine.cpp +54 -0
  567. pyquantlib-0.9.0/src/processes/all.cpp +59 -0
  568. pyquantlib-0.9.0/src/processes/batesprocess.cpp +82 -0
  569. pyquantlib-0.9.0/src/processes/blackscholesprocess.cpp +241 -0
  570. pyquantlib-0.9.0/src/processes/eulerdiscretization.cpp +28 -0
  571. pyquantlib-0.9.0/src/processes/extendedornsteinuhlenbeckprocess.cpp +54 -0
  572. pyquantlib-0.9.0/src/processes/forwardmeasureprocess.cpp +48 -0
  573. pyquantlib-0.9.0/src/processes/g2process.cpp +49 -0
  574. pyquantlib-0.9.0/src/processes/geometricbrownianmotionprocess.cpp +34 -0
  575. pyquantlib-0.9.0/src/processes/gjrgarchprocess.cpp +96 -0
  576. pyquantlib-0.9.0/src/processes/hestonprocess.cpp +93 -0
  577. pyquantlib-0.9.0/src/processes/hestonslvprocess.cpp +61 -0
  578. pyquantlib-0.9.0/src/processes/hullwhiteprocess.cpp +84 -0
  579. pyquantlib-0.9.0/src/processes/hybridhestonhullwhiteprocess.cpp +53 -0
  580. pyquantlib-0.9.0/src/processes/merton76process.cpp +87 -0
  581. pyquantlib-0.9.0/src/processes/ornsteinuhlenbeckprocess.cpp +42 -0
  582. pyquantlib-0.9.0/src/processes/squarerootprocess.cpp +41 -0
  583. pyquantlib-0.9.0/src/processes/stochasticprocessarray.cpp +77 -0
  584. pyquantlib-0.9.0/src/quotes/all.cpp +24 -0
  585. pyquantlib-0.9.0/src/quotes/compositequote.cpp +60 -0
  586. pyquantlib-0.9.0/src/quotes/deltavolquote.cpp +73 -0
  587. pyquantlib-0.9.0/src/quotes/derivedquote.cpp +59 -0
  588. pyquantlib-0.9.0/src/quotes/multicompositequote.cpp +69 -0
  589. pyquantlib-0.9.0/src/quotes/simplequote.cpp +39 -0
  590. pyquantlib-0.9.0/src/submodules.cpp +20 -0
  591. pyquantlib-0.9.0/src/termstructures/all.cpp +231 -0
  592. pyquantlib-0.9.0/src/termstructures/credit/defaultprobabilityhelpers.cpp +228 -0
  593. pyquantlib-0.9.0/src/termstructures/credit/flathazardrate.cpp +67 -0
  594. pyquantlib-0.9.0/src/termstructures/credit/piecewisedefaultcurve.cpp +92 -0
  595. pyquantlib-0.9.0/src/termstructures/defaulttermstructure.cpp +71 -0
  596. pyquantlib-0.9.0/src/termstructures/globalbootstrap.cpp +153 -0
  597. pyquantlib-0.9.0/src/termstructures/inflation/inflationhelper.cpp +78 -0
  598. pyquantlib-0.9.0/src/termstructures/inflation/inflationhelpers.cpp +184 -0
  599. pyquantlib-0.9.0/src/termstructures/inflation/interpolatedyoyinflationcurve.cpp +63 -0
  600. pyquantlib-0.9.0/src/termstructures/inflation/interpolatedzeroinflationcurve.cpp +63 -0
  601. pyquantlib-0.9.0/src/termstructures/inflation/piecewiseyoyinflationcurve.cpp +69 -0
  602. pyquantlib-0.9.0/src/termstructures/inflation/piecewisezeroinflationcurve.cpp +67 -0
  603. pyquantlib-0.9.0/src/termstructures/inflation/seasonality.cpp +83 -0
  604. pyquantlib-0.9.0/src/termstructures/inflationtermstructure.cpp +99 -0
  605. pyquantlib-0.9.0/src/termstructures/multicurve.cpp +57 -0
  606. pyquantlib-0.9.0/src/termstructures/volatility/capfloor/capfloortermvolatilitystructure.cpp +49 -0
  607. pyquantlib-0.9.0/src/termstructures/volatility/capfloor/capfloortermvolsurface.cpp +67 -0
  608. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/andreasenhugelocalvoladapter.cpp +32 -0
  609. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityadapter.cpp +33 -0
  610. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityinterpl.cpp +91 -0
  611. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackconstantvol.cpp +75 -0
  612. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvariancesurface.cpp +83 -0
  613. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvolsurfacedelta.cpp +87 -0
  614. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvoltermstructure.cpp +147 -0
  615. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvoltimeextrapolation.cpp +33 -0
  616. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/fixedlocalvolsurface.cpp +103 -0
  617. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/localconstantvol.cpp +71 -0
  618. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/localvolsurface.cpp +76 -0
  619. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/localvoltermstructure.cpp +74 -0
  620. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/noexceptlocalvolsurface.cpp +86 -0
  621. pyquantlib-0.9.0/src/termstructures/volatility/equityfx/piecewiseblackvariancesurface.cpp +62 -0
  622. pyquantlib-0.9.0/src/termstructures/volatility/flatsmilesection.cpp +60 -0
  623. pyquantlib-0.9.0/src/termstructures/volatility/hestonblackvolsurface.cpp +39 -0
  624. pyquantlib-0.9.0/src/termstructures/volatility/inflation/yoyinflationoptionletvolatilitystructure.cpp +149 -0
  625. pyquantlib-0.9.0/src/termstructures/volatility/kahalesmilesection.cpp +62 -0
  626. pyquantlib-0.9.0/src/termstructures/volatility/noarbsabr.cpp +55 -0
  627. pyquantlib-0.9.0/src/termstructures/volatility/noarbsabrinterpolatedsmilesection.cpp +78 -0
  628. pyquantlib-0.9.0/src/termstructures/volatility/noarbsabrsmilesection.cpp +51 -0
  629. pyquantlib-0.9.0/src/termstructures/volatility/optionlet/constantoptionletvol.cpp +88 -0
  630. pyquantlib-0.9.0/src/termstructures/volatility/optionlet/optionletstripper.cpp +45 -0
  631. pyquantlib-0.9.0/src/termstructures/volatility/optionlet/optionletstripper1.cpp +103 -0
  632. pyquantlib-0.9.0/src/termstructures/volatility/optionlet/optionletvolatilitystructure.cpp +124 -0
  633. pyquantlib-0.9.0/src/termstructures/volatility/optionlet/strippedoptionletadapter.cpp +41 -0
  634. pyquantlib-0.9.0/src/termstructures/volatility/optionlet/strippedoptionletbase.cpp +61 -0
  635. pyquantlib-0.9.0/src/termstructures/volatility/sabrinterpolatedsmilesection.cpp +67 -0
  636. pyquantlib-0.9.0/src/termstructures/volatility/sabrsmilesection.cpp +68 -0
  637. pyquantlib-0.9.0/src/termstructures/volatility/smilesection.cpp +104 -0
  638. pyquantlib-0.9.0/src/termstructures/volatility/spreadedswaptionvol.cpp +43 -0
  639. pyquantlib-0.9.0/src/termstructures/volatility/swaption/sabrswaptionvolcube.cpp +102 -0
  640. pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionconstantvol.cpp +90 -0
  641. pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvolcube.cpp +54 -0
  642. pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvoldiscrete.cpp +42 -0
  643. pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvolmatrix.cpp +107 -0
  644. pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvolstructure.cpp +161 -0
  645. pyquantlib-0.9.0/src/termstructures/volatility/swaption/zabrswaptionvolcube.cpp +102 -0
  646. pyquantlib-0.9.0/src/termstructures/volatility/volatilitytype.cpp +29 -0
  647. pyquantlib-0.9.0/src/termstructures/voltermstructure.cpp +51 -0
  648. pyquantlib-0.9.0/src/termstructures/yield/bondhelpers.cpp +201 -0
  649. pyquantlib-0.9.0/src/termstructures/yield/compositezeroyieldstructure.cpp +56 -0
  650. pyquantlib-0.9.0/src/termstructures/yield/discountcurve.cpp +61 -0
  651. pyquantlib-0.9.0/src/termstructures/yield/fittedbonddiscountcurve.cpp +108 -0
  652. pyquantlib-0.9.0/src/termstructures/yield/flatforward.cpp +93 -0
  653. pyquantlib-0.9.0/src/termstructures/yield/forwardcurve.cpp +61 -0
  654. pyquantlib-0.9.0/src/termstructures/yield/forwardspreadedtermstructure.cpp +42 -0
  655. pyquantlib-0.9.0/src/termstructures/yield/impliedtermstructure.cpp +40 -0
  656. pyquantlib-0.9.0/src/termstructures/yield/multipleresetsswaphelper.cpp +112 -0
  657. pyquantlib-0.9.0/src/termstructures/yield/nonlinearfittingmethods.cpp +156 -0
  658. pyquantlib-0.9.0/src/termstructures/yield/oisratehelper.cpp +272 -0
  659. pyquantlib-0.9.0/src/termstructures/yield/overnightindexfutureratehelper.cpp +126 -0
  660. pyquantlib-0.9.0/src/termstructures/yield/piecewiseyieldcurve.cpp +119 -0
  661. pyquantlib-0.9.0/src/termstructures/yield/quantotermstructure.cpp +72 -0
  662. pyquantlib-0.9.0/src/termstructures/yield/ratehelpers.cpp +346 -0
  663. pyquantlib-0.9.0/src/termstructures/yield/ultimateforwardtermstructure.cpp +57 -0
  664. pyquantlib-0.9.0/src/termstructures/yield/zerocurve.cpp +70 -0
  665. pyquantlib-0.9.0/src/termstructures/yield/zerospreadedtermstructure.cpp +50 -0
  666. pyquantlib-0.9.0/src/termstructures/yieldtermstructure.cpp +111 -0
  667. pyquantlib-0.9.0/src/time/all.cpp +38 -0
  668. pyquantlib-0.9.0/src/time/businessdayconvention.cpp +44 -0
  669. pyquantlib-0.9.0/src/time/calendar.cpp +109 -0
  670. pyquantlib-0.9.0/src/time/calendars/calendars.cpp +805 -0
  671. pyquantlib-0.9.0/src/time/calendars/islamicholidays.cpp +32 -0
  672. pyquantlib-0.9.0/src/time/date.cpp +204 -0
  673. pyquantlib-0.9.0/src/time/dategenerationrule.cpp +54 -0
  674. pyquantlib-0.9.0/src/time/daycounter.cpp +62 -0
  675. pyquantlib-0.9.0/src/time/daycounters/daycounters.cpp +123 -0
  676. pyquantlib-0.9.0/src/time/frequency.cpp +40 -0
  677. pyquantlib-0.9.0/src/time/period.cpp +108 -0
  678. pyquantlib-0.9.0/src/time/schedule.cpp +155 -0
  679. pyquantlib-0.9.0/src/time/timeunit.cpp +36 -0
  680. pyquantlib-0.9.0/src/time/weekday.cpp +41 -0
  681. pyquantlib-0.9.0/src/utilities/all.cpp +21 -0
  682. pyquantlib-0.9.0/src/utilities/null.cpp +54 -0
  683. pyquantlib-0.9.0/src/utilities/observablevalue.cpp +41 -0
  684. pyquantlib-0.9.0/tests/test_cashflows.py +2332 -0
  685. pyquantlib-0.9.0/tests/test_core.py +476 -0
  686. pyquantlib-0.9.0/tests/test_currencies.py +316 -0
  687. pyquantlib-0.9.0/tests/test_indexes.py +1094 -0
  688. pyquantlib-0.9.0/tests/test_instruments.py +4531 -0
  689. pyquantlib-0.9.0/tests/test_math_interpolations.py +776 -0
  690. pyquantlib-0.9.0/tests/test_math_optimization.py +179 -0
  691. pyquantlib-0.9.0/tests/test_math_randomnumbers.py +532 -0
  692. pyquantlib-0.9.0/tests/test_methods.py +2978 -0
  693. pyquantlib-0.9.0/tests/test_pricingengines_basket.py +858 -0
  694. pyquantlib-0.9.0/tests/test_pricingengines_bond.py +341 -0
  695. pyquantlib-0.9.0/tests/test_pricingengines_exotic.py +237 -0
  696. pyquantlib-0.9.0/tests/test_pricingengines_futures.py +68 -0
  697. pyquantlib-0.9.0/tests/test_pricingengines_swap.py +111 -0
  698. pyquantlib-0.9.0/tests/test_pricingengines_vanilla.py +1934 -0
  699. pyquantlib-0.9.0/tests/test_quotes.py +412 -0
  700. pyquantlib-0.9.0/tests/test_termstructures_volatility.py +2870 -0
  701. pyquantlib-0.9.0/tests/test_termstructures_yield.py +1939 -0
  702. pyquantlib-0.9.0/tests/test_time.py +1303 -0
  703. pyquantlib-0.7.0/.github/ISSUE_TEMPLATE/bug_report.md +0 -35
  704. pyquantlib-0.7.0/.github/scripts/build-quantlib-windows.ps1 +0 -51
  705. pyquantlib-0.7.0/.github/workflows/linux.yml +0 -115
  706. pyquantlib-0.7.0/.github/workflows/macos.yml +0 -102
  707. pyquantlib-0.7.0/.github/workflows/wheels.yml +0 -208
  708. pyquantlib-0.7.0/.github/workflows/windows.yml +0 -126
  709. pyquantlib-0.7.0/.gitignore +0 -130
  710. pyquantlib-0.7.0/CONTRIBUTING.md +0 -509
  711. pyquantlib-0.7.0/PKG-INFO +0 -248
  712. pyquantlib-0.7.0/README.md +0 -165
  713. pyquantlib-0.7.0/docs/_static/custom.css +0 -165
  714. pyquantlib-0.7.0/docs/_static/favicon.svg +0 -4
  715. pyquantlib-0.7.0/docs/_static/logo.svg +0 -15
  716. pyquantlib-0.7.0/docs/api/cashflows.md +0 -647
  717. pyquantlib-0.7.0/docs/api/core.md +0 -164
  718. pyquantlib-0.7.0/docs/api/currencies.md +0 -87
  719. pyquantlib-0.7.0/docs/api/experimental.md +0 -144
  720. pyquantlib-0.7.0/docs/api/extensions.md +0 -101
  721. pyquantlib-0.7.0/docs/api/indexes.md +0 -432
  722. pyquantlib-0.7.0/docs/api/instruments.md +0 -1079
  723. pyquantlib-0.7.0/docs/api/math.md +0 -568
  724. pyquantlib-0.7.0/docs/api/methods.md +0 -1127
  725. pyquantlib-0.7.0/docs/api/models.md +0 -438
  726. pyquantlib-0.7.0/docs/api/pricingengines.md +0 -1344
  727. pyquantlib-0.7.0/docs/api/processes.md +0 -248
  728. pyquantlib-0.7.0/docs/api/quotes.md +0 -62
  729. pyquantlib-0.7.0/docs/api/termstructures.md +0 -1193
  730. pyquantlib-0.7.0/docs/api/time.md +0 -168
  731. pyquantlib-0.7.0/docs/architecture.md +0 -257
  732. pyquantlib-0.7.0/docs/building.md +0 -293
  733. pyquantlib-0.7.0/docs/changelog.md +0 -648
  734. pyquantlib-0.7.0/docs/conf.py +0 -168
  735. pyquantlib-0.7.0/docs/contributing.md +0 -296
  736. pyquantlib-0.7.0/docs/design/api-design.md +0 -46
  737. pyquantlib-0.7.0/docs/design/bridge-defaults.md +0 -173
  738. pyquantlib-0.7.0/docs/design/builder-pattern.md +0 -163
  739. pyquantlib-0.7.0/docs/design/cross-tu-holders.md +0 -180
  740. pyquantlib-0.7.0/docs/design/diamond-inheritance.md +0 -320
  741. pyquantlib-0.7.0/docs/design/enum-singletons.md +0 -341
  742. pyquantlib-0.7.0/docs/design/hidden-handles.md +0 -123
  743. pyquantlib-0.7.0/docs/design/index.md +0 -24
  744. pyquantlib-0.7.0/docs/design/interpolation.md +0 -231
  745. pyquantlib-0.7.0/docs/design/protected-members.md +0 -280
  746. pyquantlib-0.7.0/docs/design/python-subclassing.md +0 -275
  747. pyquantlib-0.7.0/docs/design/reference-members.md +0 -180
  748. pyquantlib-0.7.0/docs/design/settings-singleton.md +0 -174
  749. pyquantlib-0.7.0/docs/examples/index.md +0 -22
  750. pyquantlib-0.7.0/docs/extending.md +0 -240
  751. pyquantlib-0.7.0/docs/index.md +0 -174
  752. pyquantlib-0.7.0/docs/installation.md +0 -62
  753. pyquantlib-0.7.0/docs/internals.md +0 -330
  754. pyquantlib-0.7.0/docs/quickstart.md +0 -219
  755. pyquantlib-0.7.0/docs/requirements.txt +0 -8
  756. pyquantlib-0.7.0/examples/bermudan_swaption.ipynb +0 -839
  757. pyquantlib-0.7.0/examples/bonds.ipynb +0 -377
  758. pyquantlib-0.7.0/examples/cds.ipynb +0 -234
  759. pyquantlib-0.7.0/examples/equity_option.ipynb +0 -501
  760. pyquantlib-0.7.0/examples/hello_pyquantlib.ipynb +0 -295
  761. pyquantlib-0.7.0/examples/inflation_derivatives.ipynb +0 -824
  762. pyquantlib-0.7.0/examples/multicurve_bootstrapping.ipynb +0 -203
  763. pyquantlib-0.7.0/examples/numpy_interoperability.ipynb +0 -499
  764. pyquantlib-0.7.0/examples/replication.ipynb +0 -359
  765. pyquantlib-0.7.0/examples/spread_option.ipynb +0 -412
  766. pyquantlib-0.7.0/examples/svi_smile.ipynb +0 -680
  767. pyquantlib-0.7.0/include/pyquantlib/binding_manager.h +0 -220
  768. pyquantlib-0.7.0/include/pyquantlib/interpolation_helper.h +0 -211
  769. pyquantlib-0.7.0/include/pyquantlib/null_utils.h +0 -61
  770. pyquantlib-0.7.0/include/pyquantlib/pyquantlib.h +0 -674
  771. pyquantlib-0.7.0/include/pyquantlib/shared_ptr_from_python.h +0 -49
  772. pyquantlib-0.7.0/include/pyquantlib/trampolines.h +0 -1263
  773. pyquantlib-0.7.0/include/pyquantlib/version.h +0 -16
  774. pyquantlib-0.7.0/licenseheader.txt +0 -11
  775. pyquantlib-0.7.0/pyquantlib/__init__.pyi +0 -1096
  776. pyquantlib-0.7.0/pyquantlib/_pyquantlib/__init__.pyi +0 -24459
  777. pyquantlib-0.7.0/pyquantlib/_pyquantlib/base.pyi +0 -2316
  778. pyquantlib-0.7.0/pyquantlib/builders.py +0 -408
  779. pyquantlib-0.7.0/pyquantlib/version.py +0 -1
  780. pyquantlib-0.7.0/pyquantlib/version.pyi +0 -3
  781. pyquantlib-0.7.0/src/cashflows/all.cpp +0 -83
  782. pyquantlib-0.7.0/src/cashflows/averagebmacoupon.cpp +0 -112
  783. pyquantlib-0.7.0/src/cashflows/capflooredcoupon.cpp +0 -129
  784. pyquantlib-0.7.0/src/cashflows/capflooredinflationcoupon.cpp +0 -87
  785. pyquantlib-0.7.0/src/cashflows/cmscoupon.cpp +0 -153
  786. pyquantlib-0.7.0/src/cashflows/conundrumpricer.cpp +0 -124
  787. pyquantlib-0.7.0/src/cashflows/coupon.cpp +0 -50
  788. pyquantlib-0.7.0/src/cashflows/couponpricer.cpp +0 -73
  789. pyquantlib-0.7.0/src/cashflows/digitalcmscoupon.cpp +0 -205
  790. pyquantlib-0.7.0/src/cashflows/digitalcoupon.cpp +0 -95
  791. pyquantlib-0.7.0/src/cashflows/digitaliborcoupon.cpp +0 -205
  792. pyquantlib-0.7.0/src/cashflows/dividend.cpp +0 -71
  793. pyquantlib-0.7.0/src/cashflows/duration.cpp +0 -27
  794. pyquantlib-0.7.0/src/cashflows/fixedratecoupon.cpp +0 -124
  795. pyquantlib-0.7.0/src/cashflows/floatingratecoupon.cpp +0 -75
  796. pyquantlib-0.7.0/src/cashflows/iborcoupon.cpp +0 -185
  797. pyquantlib-0.7.0/src/cashflows/inflationcoupon.cpp +0 -56
  798. pyquantlib-0.7.0/src/cashflows/inflationcouponpricer.cpp +0 -121
  799. pyquantlib-0.7.0/src/cashflows/lineartsrpricer.cpp +0 -137
  800. pyquantlib-0.7.0/src/cashflows/overnightindexedcoupon.cpp +0 -167
  801. pyquantlib-0.7.0/src/cashflows/overnightindexedcouponpricer.cpp +0 -73
  802. pyquantlib-0.7.0/src/cashflows/rateaveraging.cpp +0 -30
  803. pyquantlib-0.7.0/src/cashflows/replication.cpp +0 -42
  804. pyquantlib-0.7.0/src/cashflows/simplecashflow.cpp +0 -39
  805. pyquantlib-0.7.0/src/cashflows/yoyinflationcoupon.cpp +0 -162
  806. pyquantlib-0.7.0/src/cashflows/zeroinflationcashflow.cpp +0 -60
  807. pyquantlib-0.7.0/src/core/all.cpp +0 -46
  808. pyquantlib-0.7.0/src/core/cashflow.cpp +0 -39
  809. pyquantlib-0.7.0/src/core/cdspricingmodel.cpp +0 -26
  810. pyquantlib-0.7.0/src/core/compounding.cpp +0 -31
  811. pyquantlib-0.7.0/src/core/constants.cpp +0 -27
  812. pyquantlib-0.7.0/src/core/currency.cpp +0 -47
  813. pyquantlib-0.7.0/src/core/default.cpp +0 -26
  814. pyquantlib-0.7.0/src/core/exchangerate.cpp +0 -50
  815. pyquantlib-0.7.0/src/core/exercise.cpp +0 -49
  816. pyquantlib-0.7.0/src/core/forward.cpp +0 -72
  817. pyquantlib-0.7.0/src/core/index.cpp +0 -41
  818. pyquantlib-0.7.0/src/core/instrument.cpp +0 -41
  819. pyquantlib-0.7.0/src/core/interestrate.cpp +0 -125
  820. pyquantlib-0.7.0/src/core/money.cpp +0 -105
  821. pyquantlib-0.7.0/src/core/option.cpp +0 -67
  822. pyquantlib-0.7.0/src/core/payoff.cpp +0 -37
  823. pyquantlib-0.7.0/src/core/position.cpp +0 -26
  824. pyquantlib-0.7.0/src/core/pricingengine.cpp +0 -51
  825. pyquantlib-0.7.0/src/core/quote.cpp +0 -38
  826. pyquantlib-0.7.0/src/core/settings.cpp +0 -59
  827. pyquantlib-0.7.0/src/core/stochasticprocess.cpp +0 -79
  828. pyquantlib-0.7.0/src/core/termstructure.cpp +0 -54
  829. pyquantlib-0.7.0/src/core/timegrid.cpp +0 -72
  830. pyquantlib-0.7.0/src/currencies/all.cpp +0 -20
  831. pyquantlib-0.7.0/src/currencies/currencies.cpp +0 -787
  832. pyquantlib-0.7.0/src/currencies/exchangeratemanager.cpp +0 -45
  833. pyquantlib-0.7.0/src/experimental/all.cpp +0 -48
  834. pyquantlib-0.7.0/src/experimental/callablebonds/blackcallablebondengine.cpp +0 -80
  835. pyquantlib-0.7.0/src/experimental/callablebonds/callablebond.cpp +0 -133
  836. pyquantlib-0.7.0/src/experimental/callablebonds/callablebondconstantvol.cpp +0 -75
  837. pyquantlib-0.7.0/src/experimental/callablebonds/callablebondvolstructure.cpp +0 -66
  838. pyquantlib-0.7.0/src/experimental/callablebonds/treecallablebondengine.cpp +0 -88
  839. pyquantlib-0.7.0/src/experimental/credit/blackcdsoptionengine.cpp +0 -58
  840. pyquantlib-0.7.0/src/experimental/credit/cdsoption.cpp +0 -78
  841. pyquantlib-0.7.0/src/experimental/exoticoptions/twoassetcorrelationoption.cpp +0 -33
  842. pyquantlib-0.7.0/src/experimental/variancegamma/analyticvariancegammaengine.cpp +0 -30
  843. pyquantlib-0.7.0/src/experimental/variancegamma/fftvariancegammaengine.cpp +0 -30
  844. pyquantlib-0.7.0/src/experimental/variancegamma/variancegammamodel.cpp +0 -37
  845. pyquantlib-0.7.0/src/experimental/variancegamma/variancegammaprocess.cpp +0 -71
  846. pyquantlib-0.7.0/src/experimental/volatility/svismilesection.cpp +0 -73
  847. pyquantlib-0.7.0/src/indexes/all.cpp +0 -50
  848. pyquantlib-0.7.0/src/indexes/bmaindex.cpp +0 -50
  849. pyquantlib-0.7.0/src/indexes/equityindex.cpp +0 -86
  850. pyquantlib-0.7.0/src/indexes/ibor/eonia.cpp +0 -39
  851. pyquantlib-0.7.0/src/indexes/ibor/estr.cpp +0 -39
  852. pyquantlib-0.7.0/src/indexes/ibor/euribor.cpp +0 -116
  853. pyquantlib-0.7.0/src/indexes/ibor/sofr.cpp +0 -39
  854. pyquantlib-0.7.0/src/indexes/ibor/sonia.cpp +0 -39
  855. pyquantlib-0.7.0/src/indexes/iborindex.cpp +0 -118
  856. pyquantlib-0.7.0/src/indexes/inflation/aucpi.cpp +0 -70
  857. pyquantlib-0.7.0/src/indexes/inflation/euhicp.cpp +0 -82
  858. pyquantlib-0.7.0/src/indexes/inflation/frhicp.cpp +0 -52
  859. pyquantlib-0.7.0/src/indexes/inflation/ukrpi.cpp +0 -52
  860. pyquantlib-0.7.0/src/indexes/inflation/uscpi.cpp +0 -52
  861. pyquantlib-0.7.0/src/indexes/inflation/zacpi.cpp +0 -52
  862. pyquantlib-0.7.0/src/indexes/inflationindex.cpp +0 -193
  863. pyquantlib-0.7.0/src/indexes/interestrateindex.cpp +0 -64
  864. pyquantlib-0.7.0/src/indexes/region.cpp +0 -68
  865. pyquantlib-0.7.0/src/indexes/swap/swapindexes.cpp +0 -105
  866. pyquantlib-0.7.0/src/indexes/swapindex.cpp +0 -111
  867. pyquantlib-0.7.0/src/indexes/swapspreadindex.cpp +0 -45
  868. pyquantlib-0.7.0/src/instruments/all.cpp +0 -151
  869. pyquantlib-0.7.0/src/instruments/asianoption.cpp +0 -71
  870. pyquantlib-0.7.0/src/instruments/assetswap.cpp +0 -72
  871. pyquantlib-0.7.0/src/instruments/averagetype.cpp +0 -25
  872. pyquantlib-0.7.0/src/instruments/barrieroption.cpp +0 -49
  873. pyquantlib-0.7.0/src/instruments/barriertype.cpp +0 -27
  874. pyquantlib-0.7.0/src/instruments/basketoption.cpp +0 -106
  875. pyquantlib-0.7.0/src/instruments/bond.cpp +0 -178
  876. pyquantlib-0.7.0/src/instruments/bondforward.cpp +0 -77
  877. pyquantlib-0.7.0/src/instruments/bonds/amortizingcmsratebond.cpp +0 -67
  878. pyquantlib-0.7.0/src/instruments/bonds/amortizingfixedratebond.cpp +0 -79
  879. pyquantlib-0.7.0/src/instruments/bonds/amortizingfloatingratebond.cpp +0 -84
  880. pyquantlib-0.7.0/src/instruments/bonds/cmsratebond.cpp +0 -67
  881. pyquantlib-0.7.0/src/instruments/bonds/convertiblebonds.cpp +0 -158
  882. pyquantlib-0.7.0/src/instruments/bonds/cpibond.cpp +0 -89
  883. pyquantlib-0.7.0/src/instruments/bonds/fixedratebond.cpp +0 -74
  884. pyquantlib-0.7.0/src/instruments/bonds/floatingratebond.cpp +0 -78
  885. pyquantlib-0.7.0/src/instruments/bonds/zerocouponbond.cpp +0 -35
  886. pyquantlib-0.7.0/src/instruments/callabilityschedule.cpp +0 -45
  887. pyquantlib-0.7.0/src/instruments/capfloor.cpp +0 -108
  888. pyquantlib-0.7.0/src/instruments/claim.cpp +0 -50
  889. pyquantlib-0.7.0/src/instruments/cliquetoption.cpp +0 -35
  890. pyquantlib-0.7.0/src/instruments/complexchooseroption.cpp +0 -35
  891. pyquantlib-0.7.0/src/instruments/compositeinstrument.cpp +0 -37
  892. pyquantlib-0.7.0/src/instruments/compoundoption.cpp +0 -36
  893. pyquantlib-0.7.0/src/instruments/creditdefaultswap.cpp +0 -161
  894. pyquantlib-0.7.0/src/instruments/doublebarrieroption.cpp +0 -47
  895. pyquantlib-0.7.0/src/instruments/doublebarriertype.cpp +0 -27
  896. pyquantlib-0.7.0/src/instruments/equitytotalreturnswap.cpp +0 -122
  897. pyquantlib-0.7.0/src/instruments/fixedvsfloatingswap.cpp +0 -111
  898. pyquantlib-0.7.0/src/instruments/floatfloatswap.cpp +0 -201
  899. pyquantlib-0.7.0/src/instruments/floatfloatswaption.cpp +0 -47
  900. pyquantlib-0.7.0/src/instruments/forwardrateagreement.cpp +0 -86
  901. pyquantlib-0.7.0/src/instruments/forwardvanillaoption.cpp +0 -35
  902. pyquantlib-0.7.0/src/instruments/holderextensibleoption.cpp +0 -37
  903. pyquantlib-0.7.0/src/instruments/inflationcapfloor.cpp +0 -119
  904. pyquantlib-0.7.0/src/instruments/lookbackoption.cpp +0 -80
  905. pyquantlib-0.7.0/src/instruments/makecapfloor.cpp +0 -99
  906. pyquantlib-0.7.0/src/instruments/makeois.cpp +0 -208
  907. pyquantlib-0.7.0/src/instruments/makeswaption.cpp +0 -88
  908. pyquantlib-0.7.0/src/instruments/makevanillaswap.cpp +0 -192
  909. pyquantlib-0.7.0/src/instruments/makeyoyinflationcapfloor.cpp +0 -116
  910. pyquantlib-0.7.0/src/instruments/margrabeoption.cpp +0 -39
  911. pyquantlib-0.7.0/src/instruments/multiassetoption.cpp +0 -52
  912. pyquantlib-0.7.0/src/instruments/nonstandardswap.cpp +0 -159
  913. pyquantlib-0.7.0/src/instruments/nonstandardswaption.cpp +0 -52
  914. pyquantlib-0.7.0/src/instruments/oneassetoption.cpp +0 -81
  915. pyquantlib-0.7.0/src/instruments/overnightindexedswap.cpp +0 -93
  916. pyquantlib-0.7.0/src/instruments/partialtimebarrieroption.cpp +0 -49
  917. pyquantlib-0.7.0/src/instruments/payoffs.cpp +0 -103
  918. pyquantlib-0.7.0/src/instruments/quantoforwardvanillaoption.cpp +0 -41
  919. pyquantlib-0.7.0/src/instruments/quantovanillaoption.cpp +0 -38
  920. pyquantlib-0.7.0/src/instruments/simplechooseroption.cpp +0 -31
  921. pyquantlib-0.7.0/src/instruments/softbarrieroption.cpp +0 -46
  922. pyquantlib-0.7.0/src/instruments/swap.cpp +0 -117
  923. pyquantlib-0.7.0/src/instruments/swaption.cpp +0 -109
  924. pyquantlib-0.7.0/src/instruments/twoassetbarrieroption.cpp +0 -37
  925. pyquantlib-0.7.0/src/instruments/vanillaoption.cpp +0 -31
  926. pyquantlib-0.7.0/src/instruments/vanillaswap.cpp +0 -44
  927. pyquantlib-0.7.0/src/instruments/varianceswap.cpp +0 -44
  928. pyquantlib-0.7.0/src/instruments/writerextensibleoption.cpp +0 -40
  929. pyquantlib-0.7.0/src/instruments/yearonyearinflationswap.cpp +0 -107
  930. pyquantlib-0.7.0/src/instruments/zerocouponinflationswap.cpp +0 -117
  931. pyquantlib-0.7.0/src/instruments/zerocouponswap.cpp +0 -77
  932. pyquantlib-0.7.0/src/main.cpp +0 -58
  933. pyquantlib-0.7.0/src/math/all.cpp +0 -110
  934. pyquantlib-0.7.0/src/math/array.cpp +0 -217
  935. pyquantlib-0.7.0/src/math/distributions/bivariatenormaldistribution.cpp +0 -31
  936. pyquantlib-0.7.0/src/math/distributions/normaldistribution.cpp +0 -63
  937. pyquantlib-0.7.0/src/math/integrals/expsinhintegral.cpp +0 -40
  938. pyquantlib-0.7.0/src/math/integrals/gaussianquadratures.cpp +0 -150
  939. pyquantlib-0.7.0/src/math/integrals/gausslobattointegral.cpp +0 -41
  940. pyquantlib-0.7.0/src/math/integrals/integral.cpp +0 -45
  941. pyquantlib-0.7.0/src/math/integrals/kronrodintegral.cpp +0 -48
  942. pyquantlib-0.7.0/src/math/integrals/segmentintegral.cpp +0 -28
  943. pyquantlib-0.7.0/src/math/integrals/simpsonintegral.cpp +0 -29
  944. pyquantlib-0.7.0/src/math/integrals/tanhsinhintegral.cpp +0 -33
  945. pyquantlib-0.7.0/src/math/integrals/trapezoidintegral.cpp +0 -37
  946. pyquantlib-0.7.0/src/math/interpolations/backwardflatinterpolation.cpp +0 -26
  947. pyquantlib-0.7.0/src/math/interpolations/bicubicsplineinterpolation.cpp +0 -40
  948. pyquantlib-0.7.0/src/math/interpolations/bilinearinterpolation.cpp +0 -25
  949. pyquantlib-0.7.0/src/math/interpolations/chebyshevinterpolation.cpp +0 -57
  950. pyquantlib-0.7.0/src/math/interpolations/cubicinterpolation.cpp +0 -78
  951. pyquantlib-0.7.0/src/math/interpolations/extrapolation.cpp +0 -32
  952. pyquantlib-0.7.0/src/math/interpolations/forwardflatinterpolation.cpp +0 -25
  953. pyquantlib-0.7.0/src/math/interpolations/interpolation.cpp +0 -52
  954. pyquantlib-0.7.0/src/math/interpolations/interpolation2d.cpp +0 -51
  955. pyquantlib-0.7.0/src/math/interpolations/lagrangeinterpolation.cpp +0 -35
  956. pyquantlib-0.7.0/src/math/interpolations/linearinterpolation.cpp +0 -25
  957. pyquantlib-0.7.0/src/math/interpolations/loglinearinterpolation.cpp +0 -25
  958. pyquantlib-0.7.0/src/math/matrix.cpp +0 -228
  959. pyquantlib-0.7.0/src/math/matrixutilities/svd.cpp +0 -47
  960. pyquantlib-0.7.0/src/math/matrixutilities/symmetricschurdecomposition.cpp +0 -34
  961. pyquantlib-0.7.0/src/math/ode/adaptiverungekutta.cpp +0 -53
  962. pyquantlib-0.7.0/src/math/optimization/bfgs.cpp +0 -27
  963. pyquantlib-0.7.0/src/math/optimization/conjugategradient.cpp +0 -28
  964. pyquantlib-0.7.0/src/math/optimization/constraint.cpp +0 -49
  965. pyquantlib-0.7.0/src/math/optimization/costfunction.cpp +0 -33
  966. pyquantlib-0.7.0/src/math/optimization/differentialevolution.cpp +0 -119
  967. pyquantlib-0.7.0/src/math/optimization/endcriteria.cpp +0 -101
  968. pyquantlib-0.7.0/src/math/optimization/levenbergmarquardt.cpp +0 -30
  969. pyquantlib-0.7.0/src/math/optimization/method.cpp +0 -30
  970. pyquantlib-0.7.0/src/math/optimization/problem.cpp +0 -48
  971. pyquantlib-0.7.0/src/math/optimization/simplex.cpp +0 -30
  972. pyquantlib-0.7.0/src/math/optimization/steepestdescent.cpp +0 -28
  973. pyquantlib-0.7.0/src/math/randomnumbers/boxmullergaussianrng.cpp +0 -37
  974. pyquantlib-0.7.0/src/math/randomnumbers/burley2020sobolrsg.cpp +0 -45
  975. pyquantlib-0.7.0/src/math/randomnumbers/haltonrsg.cpp +0 -39
  976. pyquantlib-0.7.0/src/math/randomnumbers/inversecumulativerng.cpp +0 -40
  977. pyquantlib-0.7.0/src/math/randomnumbers/inversecumulativersg.cpp +0 -78
  978. pyquantlib-0.7.0/src/math/randomnumbers/mt19937uniformrng.cpp +0 -37
  979. pyquantlib-0.7.0/src/math/randomnumbers/randomsequencegenerator.cpp +0 -46
  980. pyquantlib-0.7.0/src/math/randomnumbers/sobolbrownianbridgersg.cpp +0 -66
  981. pyquantlib-0.7.0/src/math/randomnumbers/sobolrsg.cpp +0 -60
  982. pyquantlib-0.7.0/src/math/richardsonextrapolation.cpp +0 -41
  983. pyquantlib-0.7.0/src/math/rounding.cpp +0 -79
  984. pyquantlib-0.7.0/src/math/solvers1d/solvers1d.cpp +0 -116
  985. pyquantlib-0.7.0/src/math/statistics/incrementalstatistics.cpp +0 -78
  986. pyquantlib-0.7.0/src/math/statistics/sequencestatistics.cpp +0 -119
  987. pyquantlib-0.7.0/src/math/statistics/statistics.cpp +0 -137
  988. pyquantlib-0.7.0/src/methods/all.cpp +0 -186
  989. pyquantlib-0.7.0/src/methods/finitedifferences/boundarycondition.cpp +0 -39
  990. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/concentrating1dmesher.cpp +0 -50
  991. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/exponentialjump1dmesher.cpp +0 -47
  992. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdm1dmesher.cpp +0 -44
  993. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmblackscholesmesher.cpp +0 -71
  994. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmcev1dmesher.cpp +0 -43
  995. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmhestonvariancemesher.cpp +0 -59
  996. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmmesher.cpp +0 -41
  997. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmmeshercomposite.cpp +0 -56
  998. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmsimpleprocess1dmesher.cpp +0 -43
  999. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/glued1dmesher.cpp +0 -29
  1000. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/predefined1dmesher.cpp +0 -30
  1001. pyquantlib-0.7.0/src/methods/finitedifferences/meshers/uniform1dmesher.cpp +0 -29
  1002. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdm2dblackscholesop.cpp +0 -47
  1003. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmbatesop.cpp +0 -40
  1004. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmblackscholesfwdop.cpp +0 -45
  1005. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmblackscholesop.cpp +0 -49
  1006. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmcevop.cpp +0 -48
  1007. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmg2op.cpp +0 -34
  1008. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhestonfwdop.cpp +0 -39
  1009. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhestonhullwhiteop.cpp +0 -36
  1010. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhestonop.cpp +0 -40
  1011. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhullwhiteop.cpp +0 -33
  1012. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearop.cpp +0 -28
  1013. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearopcomposite.cpp +0 -43
  1014. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearopiterator.cpp +0 -46
  1015. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearoplayout.cpp +0 -73
  1016. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlocalvolfwdop.cpp +0 -40
  1017. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmornsteinuhlenbeckop.cpp +0 -36
  1018. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmsabrop.cpp +0 -35
  1019. pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmsquarerootfwdop.cpp +0 -50
  1020. pyquantlib-0.7.0/src/methods/finitedifferences/operators/firstderivativeop.cpp +0 -30
  1021. pyquantlib-0.7.0/src/methods/finitedifferences/operators/ninepointlinearop.cpp +0 -36
  1022. pyquantlib-0.7.0/src/methods/finitedifferences/operators/nthorderderivativeop.cpp +0 -32
  1023. pyquantlib-0.7.0/src/methods/finitedifferences/operators/secondderivativeop.cpp +0 -30
  1024. pyquantlib-0.7.0/src/methods/finitedifferences/operators/secondordermixedderivativeop.cpp +0 -30
  1025. pyquantlib-0.7.0/src/methods/finitedifferences/operators/triplebandlinearop.cpp +0 -55
  1026. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/craigsneydscheme.cpp +0 -41
  1027. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/cranknicolsonscheme.cpp +0 -45
  1028. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/douglasscheme.cpp +0 -40
  1029. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/expliciteulerscheme.cpp +0 -39
  1030. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/hundsdorferscheme.cpp +0 -41
  1031. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/impliciteulerscheme.cpp +0 -51
  1032. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/methodoflinesscheme.cpp +0 -41
  1033. pyquantlib-0.7.0/src/methods/finitedifferences/schemes/modifiedcraigsneydscheme.cpp +0 -41
  1034. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm1dimsolver.cpp +0 -47
  1035. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm2dblackscholessolver.cpp +0 -95
  1036. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm2dimsolver.cpp +0 -56
  1037. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm3dimsolver.cpp +0 -41
  1038. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmbackwardsolver.cpp +0 -100
  1039. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmbatessolver.cpp +0 -80
  1040. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmblackscholessolver.cpp +0 -97
  1041. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmg2solver.cpp +0 -54
  1042. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmhestonsolver.cpp +0 -95
  1043. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmhullwhitesolver.cpp +0 -54
  1044. pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmsolverdesc.cpp +0 -55
  1045. pyquantlib-0.7.0/src/methods/finitedifferences/stepcondition.cpp +0 -32
  1046. pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmamericanstepcondition.cpp +0 -33
  1047. pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmarithmeticaveragecondition.cpp +0 -36
  1048. pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmbermudanstepcondition.cpp +0 -44
  1049. pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmsimpleswingcondition.cpp +0 -39
  1050. pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmsnapshotcondition.cpp +0 -35
  1051. pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmstepconditioncomposite.cpp +0 -57
  1052. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/bsmrndcalculator.cpp +0 -31
  1053. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/cevrndcalculator.cpp +0 -33
  1054. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmdirichletboundary.cpp +0 -35
  1055. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmdiscountdirichletboundary.cpp +0 -39
  1056. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmdividendhandler.cpp +0 -50
  1057. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmhestongreensfct.cpp +0 -27
  1058. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdminnervaluecalculator.cpp +0 -91
  1059. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmquantohelper.cpp +0 -55
  1060. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmtimedepdirichletboundary.cpp +0 -37
  1061. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/gbsmrndcalculator.cpp +0 -31
  1062. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/hestonrndcalculator.cpp +0 -33
  1063. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/localvolrndcalculator.cpp +0 -90
  1064. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/riskneutraldensitycalculator.cpp +0 -35
  1065. pyquantlib-0.7.0/src/methods/finitedifferences/utilities/squarerootprocessrndcalculator.cpp +0 -40
  1066. pyquantlib-0.7.0/src/methods/montecarlo/brownianbridge.cpp +0 -66
  1067. pyquantlib-0.7.0/src/methods/montecarlo/lsmbasissystem.cpp +0 -32
  1068. pyquantlib-0.7.0/src/methods/montecarlo/multipath.cpp +0 -47
  1069. pyquantlib-0.7.0/src/methods/montecarlo/multipathgenerator.cpp +0 -71
  1070. pyquantlib-0.7.0/src/methods/montecarlo/path.cpp +0 -51
  1071. pyquantlib-0.7.0/src/methods/montecarlo/pathgenerator.cpp +0 -86
  1072. pyquantlib-0.7.0/src/methods/montecarlo/sample.cpp +0 -72
  1073. pyquantlib-0.7.0/src/models/all.cpp +0 -72
  1074. pyquantlib-0.7.0/src/models/calibrationhelper.cpp +0 -70
  1075. pyquantlib-0.7.0/src/models/equity/batesmodel.cpp +0 -31
  1076. pyquantlib-0.7.0/src/models/equity/gjrgarchmodel.cpp +0 -43
  1077. pyquantlib-0.7.0/src/models/equity/hestonmodel.cpp +0 -44
  1078. pyquantlib-0.7.0/src/models/equity/hestonmodelhelper.cpp +0 -90
  1079. pyquantlib-0.7.0/src/models/equity/hestonslvfdmmodel.cpp +0 -164
  1080. pyquantlib-0.7.0/src/models/equity/hestonslvmcmodel.cpp +0 -75
  1081. pyquantlib-0.7.0/src/models/marketmodels/browniangenerator.cpp +0 -45
  1082. pyquantlib-0.7.0/src/models/marketmodels/browniangenerators/mtbrowniangenerator.cpp +0 -37
  1083. pyquantlib-0.7.0/src/models/marketmodels/browniangenerators/sobolbrowniangenerator.cpp +0 -83
  1084. pyquantlib-0.7.0/src/models/model.cpp +0 -95
  1085. pyquantlib-0.7.0/src/models/parameter.cpp +0 -49
  1086. pyquantlib-0.7.0/src/models/piecewisetimedependenthestonmodel.cpp +0 -61
  1087. pyquantlib-0.7.0/src/models/shortrate/calibrationhelpers/caphelper.cpp +0 -78
  1088. pyquantlib-0.7.0/src/models/shortrate/calibrationhelpers/swaptionhelper.cpp +0 -215
  1089. pyquantlib-0.7.0/src/models/shortrate/onefactormodel.cpp +0 -39
  1090. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/blackkarasinski.cpp +0 -43
  1091. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/coxingersollross.cpp +0 -37
  1092. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/extendedcoxingersollross.cpp +0 -52
  1093. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/gaussian1dmodel.cpp +0 -112
  1094. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/gsr.cpp +0 -141
  1095. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/hullwhite.cpp +0 -60
  1096. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/markovfunctional.cpp +0 -243
  1097. pyquantlib-0.7.0/src/models/shortrate/onefactormodels/vasicek.cpp +0 -45
  1098. pyquantlib-0.7.0/src/models/shortrate/twofactormodel.cpp +0 -28
  1099. pyquantlib-0.7.0/src/models/shortrate/twofactormodels/g2.cpp +0 -71
  1100. pyquantlib-0.7.0/src/patterns/all.cpp +0 -22
  1101. pyquantlib-0.7.0/src/patterns/lazyobject.cpp +0 -42
  1102. pyquantlib-0.7.0/src/patterns/observable.cpp +0 -65
  1103. pyquantlib-0.7.0/src/pricingengines/all.cpp +0 -272
  1104. pyquantlib-0.7.0/src/pricingengines/asian/analytic_cont_geom_av_price.cpp +0 -31
  1105. pyquantlib-0.7.0/src/pricingengines/asian/analytic_discr_geom_av_price.cpp +0 -31
  1106. pyquantlib-0.7.0/src/pricingengines/asian/analytic_discr_geom_av_strike.cpp +0 -31
  1107. pyquantlib-0.7.0/src/pricingengines/asian/choiasianengine.cpp +0 -34
  1108. pyquantlib-0.7.0/src/pricingengines/asian/continuousarithmeticasianlevyengine.cpp +0 -42
  1109. pyquantlib-0.7.0/src/pricingengines/asian/fdblackscholesasianengine.cpp +0 -37
  1110. pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_arith_av_price.cpp +0 -71
  1111. pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_arith_av_price_heston.cpp +0 -93
  1112. pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_arith_av_strike.cpp +0 -67
  1113. pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_geom_av_price.cpp +0 -67
  1114. pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_geom_av_price_heston.cpp +0 -89
  1115. pyquantlib-0.7.0/src/pricingengines/asian/turnbullwakemanasianengine.cpp +0 -30
  1116. pyquantlib-0.7.0/src/pricingengines/bacheliercalculator.cpp +0 -85
  1117. pyquantlib-0.7.0/src/pricingengines/barrier/analyticbarrierengine.cpp +0 -30
  1118. pyquantlib-0.7.0/src/pricingengines/barrier/analyticbinarybarrierengine.cpp +0 -30
  1119. pyquantlib-0.7.0/src/pricingengines/barrier/analyticdoublebarrierbinaryengine.cpp +0 -30
  1120. pyquantlib-0.7.0/src/pricingengines/barrier/analyticdoublebarrierengine.cpp +0 -31
  1121. pyquantlib-0.7.0/src/pricingengines/barrier/analyticpartialtimebarrieroptionengine.cpp +0 -30
  1122. pyquantlib-0.7.0/src/pricingengines/barrier/analyticsoftbarrierengine.cpp +0 -30
  1123. pyquantlib-0.7.0/src/pricingengines/barrier/analytictwoassetbarrierengine.cpp +0 -45
  1124. pyquantlib-0.7.0/src/pricingengines/barrier/binomialbarrierengine.cpp +0 -94
  1125. pyquantlib-0.7.0/src/pricingengines/barrier/fdblackscholesbarrierengine.cpp +0 -38
  1126. pyquantlib-0.7.0/src/pricingengines/barrier/fdblackscholesrebateengine.cpp +0 -38
  1127. pyquantlib-0.7.0/src/pricingengines/barrier/fdhestonbarrierengine.cpp +0 -38
  1128. pyquantlib-0.7.0/src/pricingengines/barrier/fdhestondoublebarrierengine.cpp +0 -38
  1129. pyquantlib-0.7.0/src/pricingengines/barrier/fdhestonrebateengine.cpp +0 -38
  1130. pyquantlib-0.7.0/src/pricingengines/barrier/mcbarrierengine.cpp +0 -105
  1131. pyquantlib-0.7.0/src/pricingengines/barrier/mcdoublebarrierengine.cpp +0 -99
  1132. pyquantlib-0.7.0/src/pricingengines/basket/bjerksundstenslandspreadengine.cpp +0 -31
  1133. pyquantlib-0.7.0/src/pricingengines/basket/choibasketengine.cpp +0 -38
  1134. pyquantlib-0.7.0/src/pricingengines/basket/denglizhoubasketengine.cpp +0 -31
  1135. pyquantlib-0.7.0/src/pricingengines/basket/fd2dblackscholesvanillaengine.cpp +0 -36
  1136. pyquantlib-0.7.0/src/pricingengines/basket/fdndimblackscholesvanillaengine.cpp +0 -48
  1137. pyquantlib-0.7.0/src/pricingengines/basket/kirkengine.cpp +0 -29
  1138. pyquantlib-0.7.0/src/pricingengines/basket/mcamericanbasketengine.cpp +0 -86
  1139. pyquantlib-0.7.0/src/pricingengines/basket/mceuropeanbasketengine.cpp +0 -96
  1140. pyquantlib-0.7.0/src/pricingengines/basket/operatorsplittingspreadengine.cpp +0 -31
  1141. pyquantlib-0.7.0/src/pricingengines/basket/singlefactorbsmbasketengine.cpp +0 -33
  1142. pyquantlib-0.7.0/src/pricingengines/basket/spreadblackscholesvanillaengine.cpp +0 -46
  1143. pyquantlib-0.7.0/src/pricingengines/basket/stulzengine.cpp +0 -30
  1144. pyquantlib-0.7.0/src/pricingengines/blackcalculator.cpp +0 -85
  1145. pyquantlib-0.7.0/src/pricingengines/blackformula.cpp +0 -149
  1146. pyquantlib-0.7.0/src/pricingengines/bond/binomialconvertibleengine.cpp +0 -139
  1147. pyquantlib-0.7.0/src/pricingengines/bond/bondfunctions.cpp +0 -177
  1148. pyquantlib-0.7.0/src/pricingengines/bond/discountingbondengine.cpp +0 -46
  1149. pyquantlib-0.7.0/src/pricingengines/capfloor/analyticcapfloorengine.cpp +0 -45
  1150. pyquantlib-0.7.0/src/pricingengines/capfloor/bacheliercapfloorengine.cpp +0 -64
  1151. pyquantlib-0.7.0/src/pricingengines/capfloor/blackcapfloorengine.cpp +0 -68
  1152. pyquantlib-0.7.0/src/pricingengines/capfloor/gaussian1dcapfloorengine.cpp +0 -39
  1153. pyquantlib-0.7.0/src/pricingengines/capfloor/treecapfloorengine.cpp +0 -56
  1154. pyquantlib-0.7.0/src/pricingengines/cliquet/analyticcliquetengine.cpp +0 -30
  1155. pyquantlib-0.7.0/src/pricingengines/credit/isdacdsengine.cpp +0 -89
  1156. pyquantlib-0.7.0/src/pricingengines/credit/midpointcdsengine.cpp +0 -54
  1157. pyquantlib-0.7.0/src/pricingengines/exotic/analyticamericanmargrabeengine.cpp +0 -34
  1158. pyquantlib-0.7.0/src/pricingengines/exotic/analyticcomplexchooserengine.cpp +0 -30
  1159. pyquantlib-0.7.0/src/pricingengines/exotic/analyticcompoundoptionengine.cpp +0 -30
  1160. pyquantlib-0.7.0/src/pricingengines/exotic/analyticeuropeanmargrabeengine.cpp +0 -34
  1161. pyquantlib-0.7.0/src/pricingengines/exotic/analyticholderextensibleoptionengine.cpp +0 -30
  1162. pyquantlib-0.7.0/src/pricingengines/exotic/analyticsimplechooserengine.cpp +0 -30
  1163. pyquantlib-0.7.0/src/pricingengines/exotic/analytictwoassetcorrelationengine.cpp +0 -46
  1164. pyquantlib-0.7.0/src/pricingengines/exotic/analyticwriterextensibleoptionengine.cpp +0 -30
  1165. pyquantlib-0.7.0/src/pricingengines/forward/forwardengine.cpp +0 -44
  1166. pyquantlib-0.7.0/src/pricingengines/forward/mcforwardeuropeanbsengine.cpp +0 -99
  1167. pyquantlib-0.7.0/src/pricingengines/forward/mcforwardeuropeanhestonengine.cpp +0 -99
  1168. pyquantlib-0.7.0/src/pricingengines/forward/replicatingvarianceswapengine.cpp +0 -35
  1169. pyquantlib-0.7.0/src/pricingengines/genericmodelengine.cpp +0 -37
  1170. pyquantlib-0.7.0/src/pricingengines/inflation/inflationcapfloorengines.cpp +0 -125
  1171. pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuousfixedlookback.cpp +0 -30
  1172. pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuousfloatinglookback.cpp +0 -30
  1173. pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuouspartialfixedlookback.cpp +0 -30
  1174. pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuouspartialfloatinglookback.cpp +0 -30
  1175. pyquantlib-0.7.0/src/pricingengines/quanto/quantoengine.cpp +0 -95
  1176. pyquantlib-0.7.0/src/pricingengines/swap/discountingswapengine.cpp +0 -52
  1177. pyquantlib-0.7.0/src/pricingengines/swaption/blackswaptionengine.cpp +0 -117
  1178. pyquantlib-0.7.0/src/pricingengines/swaption/fdg2swaptionengine.cpp +0 -36
  1179. pyquantlib-0.7.0/src/pricingengines/swaption/fdhullwhiteswaptionengine.cpp +0 -35
  1180. pyquantlib-0.7.0/src/pricingengines/swaption/g2swaptionengine.cpp +0 -30
  1181. pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1dfloatfloatswaptionengine.cpp +0 -57
  1182. pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1djamshidianswaptionengine.cpp +0 -31
  1183. pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1dnonstandardswaptionengine.cpp +0 -55
  1184. pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1dswaptionengine.cpp +0 -52
  1185. pyquantlib-0.7.0/src/pricingengines/swaption/jamshidianswaptionengine.cpp +0 -44
  1186. pyquantlib-0.7.0/src/pricingengines/swaption/treeswaptionengine.cpp +0 -60
  1187. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticbsmhullwhiteengine.cpp +0 -36
  1188. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticcevengine.cpp +0 -59
  1189. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticdigitalamericanengine.cpp +0 -40
  1190. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticdividendeuropeanengine.cpp +0 -35
  1191. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticeuropeanengine.cpp +0 -43
  1192. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticeuropeanvasicekengine.cpp +0 -33
  1193. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticgjrgarchengine.cpp +0 -29
  1194. pyquantlib-0.7.0/src/pricingengines/vanilla/analytich1hwengine.cpp +0 -48
  1195. pyquantlib-0.7.0/src/pricingengines/vanilla/analytichestonengine.cpp +0 -110
  1196. pyquantlib-0.7.0/src/pricingengines/vanilla/analytichestonhullwhiteengine.cpp +0 -44
  1197. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticpdfhestonengine.cpp +0 -39
  1198. pyquantlib-0.7.0/src/pricingengines/vanilla/analyticptdhestonengine.cpp +0 -50
  1199. pyquantlib-0.7.0/src/pricingengines/vanilla/baroneadesiwhaleyengine.cpp +0 -39
  1200. pyquantlib-0.7.0/src/pricingengines/vanilla/batesengine.cpp +0 -34
  1201. pyquantlib-0.7.0/src/pricingengines/vanilla/binomialengine.cpp +0 -83
  1202. pyquantlib-0.7.0/src/pricingengines/vanilla/bjerksundstenslandengine.cpp +0 -31
  1203. pyquantlib-0.7.0/src/pricingengines/vanilla/cashdividendeuropeanengine.cpp +0 -45
  1204. pyquantlib-0.7.0/src/pricingengines/vanilla/coshestonengine.cpp +0 -49
  1205. pyquantlib-0.7.0/src/pricingengines/vanilla/exponentialfittinghestonengine.cpp +0 -43
  1206. pyquantlib-0.7.0/src/pricingengines/vanilla/fdbatesvanillaengine.cpp +0 -52
  1207. pyquantlib-0.7.0/src/pricingengines/vanilla/fdblackscholesshoutengine.cpp +0 -50
  1208. pyquantlib-0.7.0/src/pricingengines/vanilla/fdblackscholesvanillaengine.cpp +0 -61
  1209. pyquantlib-0.7.0/src/pricingengines/vanilla/fdcevvanillaengine.cpp +0 -67
  1210. pyquantlib-0.7.0/src/pricingengines/vanilla/fdhestonhullwhitevanillaengine.cpp +0 -62
  1211. pyquantlib-0.7.0/src/pricingengines/vanilla/fdhestonvanillaengine.cpp +0 -98
  1212. pyquantlib-0.7.0/src/pricingengines/vanilla/fdornsteinuhlenbeckvanillaengine.cpp +0 -56
  1213. pyquantlib-0.7.0/src/pricingengines/vanilla/fdsabrvanillaengine.cpp +0 -73
  1214. pyquantlib-0.7.0/src/pricingengines/vanilla/hestonexpansionengine.cpp +0 -40
  1215. pyquantlib-0.7.0/src/pricingengines/vanilla/integralengine.cpp +0 -28
  1216. pyquantlib-0.7.0/src/pricingengines/vanilla/juquadraticengine.cpp +0 -31
  1217. pyquantlib-0.7.0/src/pricingengines/vanilla/mcamericanengine.cpp +0 -128
  1218. pyquantlib-0.7.0/src/pricingengines/vanilla/mcdigitalengine.cpp +0 -99
  1219. pyquantlib-0.7.0/src/pricingengines/vanilla/mceuropeanengine.cpp +0 -112
  1220. pyquantlib-0.7.0/src/pricingengines/vanilla/mceuropeangjrgarchengine.cpp +0 -96
  1221. pyquantlib-0.7.0/src/pricingengines/vanilla/mceuropeanhestonengine.cpp +0 -106
  1222. pyquantlib-0.7.0/src/pricingengines/vanilla/qdfpamericanengine.cpp +0 -86
  1223. pyquantlib-0.7.0/src/pricingengines/vanilla/qdplusamericanengine.cpp +0 -53
  1224. pyquantlib-0.7.0/src/processes/all.cpp +0 -58
  1225. pyquantlib-0.7.0/src/processes/batesprocess.cpp +0 -81
  1226. pyquantlib-0.7.0/src/processes/blackscholesprocess.cpp +0 -240
  1227. pyquantlib-0.7.0/src/processes/eulerdiscretization.cpp +0 -27
  1228. pyquantlib-0.7.0/src/processes/extendedornsteinuhlenbeckprocess.cpp +0 -53
  1229. pyquantlib-0.7.0/src/processes/forwardmeasureprocess.cpp +0 -47
  1230. pyquantlib-0.7.0/src/processes/g2process.cpp +0 -48
  1231. pyquantlib-0.7.0/src/processes/geometricbrownianmotionprocess.cpp +0 -33
  1232. pyquantlib-0.7.0/src/processes/gjrgarchprocess.cpp +0 -95
  1233. pyquantlib-0.7.0/src/processes/hestonprocess.cpp +0 -92
  1234. pyquantlib-0.7.0/src/processes/hestonslvprocess.cpp +0 -60
  1235. pyquantlib-0.7.0/src/processes/hullwhiteprocess.cpp +0 -83
  1236. pyquantlib-0.7.0/src/processes/hybridhestonhullwhiteprocess.cpp +0 -52
  1237. pyquantlib-0.7.0/src/processes/merton76process.cpp +0 -86
  1238. pyquantlib-0.7.0/src/processes/ornsteinuhlenbeckprocess.cpp +0 -41
  1239. pyquantlib-0.7.0/src/processes/squarerootprocess.cpp +0 -40
  1240. pyquantlib-0.7.0/src/processes/stochasticprocessarray.cpp +0 -76
  1241. pyquantlib-0.7.0/src/quotes/all.cpp +0 -21
  1242. pyquantlib-0.7.0/src/quotes/compositequote.cpp +0 -59
  1243. pyquantlib-0.7.0/src/quotes/derivedquote.cpp +0 -58
  1244. pyquantlib-0.7.0/src/quotes/simplequote.cpp +0 -38
  1245. pyquantlib-0.7.0/src/submodules.cpp +0 -19
  1246. pyquantlib-0.7.0/src/termstructures/all.cpp +0 -212
  1247. pyquantlib-0.7.0/src/termstructures/credit/defaultprobabilityhelpers.cpp +0 -227
  1248. pyquantlib-0.7.0/src/termstructures/credit/flathazardrate.cpp +0 -66
  1249. pyquantlib-0.7.0/src/termstructures/credit/piecewisedefaultcurve.cpp +0 -91
  1250. pyquantlib-0.7.0/src/termstructures/defaulttermstructure.cpp +0 -70
  1251. pyquantlib-0.7.0/src/termstructures/globalbootstrap.cpp +0 -152
  1252. pyquantlib-0.7.0/src/termstructures/inflation/inflationhelper.cpp +0 -77
  1253. pyquantlib-0.7.0/src/termstructures/inflation/inflationhelpers.cpp +0 -183
  1254. pyquantlib-0.7.0/src/termstructures/inflation/interpolatedyoyinflationcurve.cpp +0 -62
  1255. pyquantlib-0.7.0/src/termstructures/inflation/interpolatedzeroinflationcurve.cpp +0 -62
  1256. pyquantlib-0.7.0/src/termstructures/inflation/piecewiseyoyinflationcurve.cpp +0 -68
  1257. pyquantlib-0.7.0/src/termstructures/inflation/piecewisezeroinflationcurve.cpp +0 -66
  1258. pyquantlib-0.7.0/src/termstructures/inflation/seasonality.cpp +0 -82
  1259. pyquantlib-0.7.0/src/termstructures/inflationtermstructure.cpp +0 -98
  1260. pyquantlib-0.7.0/src/termstructures/multicurve.cpp +0 -56
  1261. pyquantlib-0.7.0/src/termstructures/volatility/capfloor/capfloortermvolatilitystructure.cpp +0 -48
  1262. pyquantlib-0.7.0/src/termstructures/volatility/capfloor/capfloortermvolsurface.cpp +0 -66
  1263. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/andreasenhugelocalvoladapter.cpp +0 -31
  1264. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityadapter.cpp +0 -32
  1265. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityinterpl.cpp +0 -90
  1266. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/blackconstantvol.cpp +0 -74
  1267. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/blackvariancesurface.cpp +0 -82
  1268. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/blackvoltermstructure.cpp +0 -146
  1269. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/fixedlocalvolsurface.cpp +0 -102
  1270. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/localconstantvol.cpp +0 -70
  1271. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/localvolsurface.cpp +0 -75
  1272. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/localvoltermstructure.cpp +0 -73
  1273. pyquantlib-0.7.0/src/termstructures/volatility/equityfx/noexceptlocalvolsurface.cpp +0 -85
  1274. pyquantlib-0.7.0/src/termstructures/volatility/flatsmilesection.cpp +0 -60
  1275. pyquantlib-0.7.0/src/termstructures/volatility/hestonblackvolsurface.cpp +0 -38
  1276. pyquantlib-0.7.0/src/termstructures/volatility/inflation/yoyinflationoptionletvolatilitystructure.cpp +0 -148
  1277. pyquantlib-0.7.0/src/termstructures/volatility/kahalesmilesection.cpp +0 -62
  1278. pyquantlib-0.7.0/src/termstructures/volatility/noarbsabr.cpp +0 -54
  1279. pyquantlib-0.7.0/src/termstructures/volatility/noarbsabrinterpolatedsmilesection.cpp +0 -78
  1280. pyquantlib-0.7.0/src/termstructures/volatility/noarbsabrsmilesection.cpp +0 -51
  1281. pyquantlib-0.7.0/src/termstructures/volatility/optionlet/constantoptionletvol.cpp +0 -87
  1282. pyquantlib-0.7.0/src/termstructures/volatility/optionlet/optionletstripper.cpp +0 -44
  1283. pyquantlib-0.7.0/src/termstructures/volatility/optionlet/optionletstripper1.cpp +0 -102
  1284. pyquantlib-0.7.0/src/termstructures/volatility/optionlet/optionletvolatilitystructure.cpp +0 -123
  1285. pyquantlib-0.7.0/src/termstructures/volatility/optionlet/strippedoptionletadapter.cpp +0 -40
  1286. pyquantlib-0.7.0/src/termstructures/volatility/optionlet/strippedoptionletbase.cpp +0 -60
  1287. pyquantlib-0.7.0/src/termstructures/volatility/sabrinterpolatedsmilesection.cpp +0 -66
  1288. pyquantlib-0.7.0/src/termstructures/volatility/sabrsmilesection.cpp +0 -67
  1289. pyquantlib-0.7.0/src/termstructures/volatility/smilesection.cpp +0 -103
  1290. pyquantlib-0.7.0/src/termstructures/volatility/spreadedswaptionvol.cpp +0 -42
  1291. pyquantlib-0.7.0/src/termstructures/volatility/swaption/sabrswaptionvolcube.cpp +0 -101
  1292. pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionconstantvol.cpp +0 -89
  1293. pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvolcube.cpp +0 -53
  1294. pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvoldiscrete.cpp +0 -41
  1295. pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvolmatrix.cpp +0 -106
  1296. pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvolstructure.cpp +0 -160
  1297. pyquantlib-0.7.0/src/termstructures/volatility/volatilitytype.cpp +0 -28
  1298. pyquantlib-0.7.0/src/termstructures/voltermstructure.cpp +0 -50
  1299. pyquantlib-0.7.0/src/termstructures/yield/bondhelpers.cpp +0 -200
  1300. pyquantlib-0.7.0/src/termstructures/yield/compositezeroyieldstructure.cpp +0 -55
  1301. pyquantlib-0.7.0/src/termstructures/yield/discountcurve.cpp +0 -60
  1302. pyquantlib-0.7.0/src/termstructures/yield/fittedbonddiscountcurve.cpp +0 -107
  1303. pyquantlib-0.7.0/src/termstructures/yield/flatforward.cpp +0 -92
  1304. pyquantlib-0.7.0/src/termstructures/yield/forwardcurve.cpp +0 -60
  1305. pyquantlib-0.7.0/src/termstructures/yield/forwardspreadedtermstructure.cpp +0 -41
  1306. pyquantlib-0.7.0/src/termstructures/yield/impliedtermstructure.cpp +0 -39
  1307. pyquantlib-0.7.0/src/termstructures/yield/nonlinearfittingmethods.cpp +0 -155
  1308. pyquantlib-0.7.0/src/termstructures/yield/oisratehelper.cpp +0 -271
  1309. pyquantlib-0.7.0/src/termstructures/yield/piecewiseyieldcurve.cpp +0 -105
  1310. pyquantlib-0.7.0/src/termstructures/yield/quantotermstructure.cpp +0 -71
  1311. pyquantlib-0.7.0/src/termstructures/yield/ratehelpers.cpp +0 -287
  1312. pyquantlib-0.7.0/src/termstructures/yield/ultimateforwardtermstructure.cpp +0 -56
  1313. pyquantlib-0.7.0/src/termstructures/yield/zerocurve.cpp +0 -69
  1314. pyquantlib-0.7.0/src/termstructures/yield/zerospreadedtermstructure.cpp +0 -49
  1315. pyquantlib-0.7.0/src/termstructures/yieldtermstructure.cpp +0 -110
  1316. pyquantlib-0.7.0/src/time/all.cpp +0 -36
  1317. pyquantlib-0.7.0/src/time/businessdayconvention.cpp +0 -43
  1318. pyquantlib-0.7.0/src/time/calendar.cpp +0 -108
  1319. pyquantlib-0.7.0/src/time/calendars/calendars.cpp +0 -678
  1320. pyquantlib-0.7.0/src/time/date.cpp +0 -203
  1321. pyquantlib-0.7.0/src/time/dategenerationrule.cpp +0 -53
  1322. pyquantlib-0.7.0/src/time/daycounter.cpp +0 -61
  1323. pyquantlib-0.7.0/src/time/daycounters/daycounters.cpp +0 -122
  1324. pyquantlib-0.7.0/src/time/frequency.cpp +0 -39
  1325. pyquantlib-0.7.0/src/time/period.cpp +0 -107
  1326. pyquantlib-0.7.0/src/time/schedule.cpp +0 -154
  1327. pyquantlib-0.7.0/src/time/timeunit.cpp +0 -35
  1328. pyquantlib-0.7.0/src/time/weekday.cpp +0 -40
  1329. pyquantlib-0.7.0/src/utilities/all.cpp +0 -20
  1330. pyquantlib-0.7.0/src/utilities/null.cpp +0 -53
  1331. pyquantlib-0.7.0/src/utilities/observablevalue.cpp +0 -40
  1332. pyquantlib-0.7.0/tests/test_cashflows.py +0 -2315
  1333. pyquantlib-0.7.0/tests/test_core.py +0 -434
  1334. pyquantlib-0.7.0/tests/test_currencies.py +0 -308
  1335. pyquantlib-0.7.0/tests/test_experimental_exoticoptions.py +0 -72
  1336. pyquantlib-0.7.0/tests/test_indexes.py +0 -1001
  1337. pyquantlib-0.7.0/tests/test_instruments.py +0 -4142
  1338. pyquantlib-0.7.0/tests/test_math_interpolations.py +0 -291
  1339. pyquantlib-0.7.0/tests/test_math_optimization.py +0 -133
  1340. pyquantlib-0.7.0/tests/test_math_randomnumbers.py +0 -532
  1341. pyquantlib-0.7.0/tests/test_methods.py +0 -2929
  1342. pyquantlib-0.7.0/tests/test_pricingengines_basket.py +0 -697
  1343. pyquantlib-0.7.0/tests/test_pricingengines_bond.py +0 -341
  1344. pyquantlib-0.7.0/tests/test_pricingengines_exotic.py +0 -216
  1345. pyquantlib-0.7.0/tests/test_pricingengines_vanilla.py +0 -1891
  1346. pyquantlib-0.7.0/tests/test_quotes.py +0 -348
  1347. pyquantlib-0.7.0/tests/test_termstructures_volatility.py +0 -2628
  1348. pyquantlib-0.7.0/tests/test_termstructures_yield.py +0 -1759
  1349. pyquantlib-0.7.0/tests/test_time.py +0 -1214
  1350. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.gitattributes +0 -0
  1351. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1352. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  1353. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.github/ISSUE_TEMPLATE/infrastructure.md +0 -0
  1354. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.readthedocs.yaml +0 -0
  1355. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/CITATION.cff +0 -0
  1356. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/CMakeLists.txt +0 -0
  1357. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/CMakePresets.json +0 -0
  1358. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/LICENSE +0 -0
  1359. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/SECURITY.md +0 -0
  1360. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/api/index.md +0 -0
  1361. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/handles.md +0 -0
  1362. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/numpy.md +0 -0
  1363. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/troubleshooting.md +0 -0
  1364. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/examples/README.md +0 -0
  1365. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/extensions.json +0 -0
  1366. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyproject.toml +0 -0
  1367. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/__init__.py +0 -0
  1368. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/extensions/__init__.py +0 -0
  1369. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/extensions/modified_kirk_engine.py +0 -0
  1370. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/extensions/svi_smile_section.py +0 -0
  1371. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/py.typed +0 -0
  1372. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/requirements-dev.txt +0 -0
  1373. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/README.md +0 -0
  1374. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/build_docs.py +0 -0
  1375. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/clean.py +0 -0
  1376. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/rebuild.py +0 -0
  1377. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/stubgen.py +0 -0
  1378. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/test.py +0 -0
  1379. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/settings.json +0 -0
  1380. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/conftest.py +0 -0
  1381. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_callablebonds.py +0 -0
  1382. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_credit.py +0 -0
  1383. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_variancegamma.py +0 -0
  1384. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_volatility.py +0 -0
  1385. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_extensions.py +0 -0
  1386. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_instruments_bonds.py +0 -0
  1387. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math.py +0 -0
  1388. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_distributions.py +0 -0
  1389. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_integrals.py +0 -0
  1390. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_solvers1d.py +0 -0
  1391. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_statistics.py +0 -0
  1392. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_models.py +0 -0
  1393. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_models_equity.py +0 -0
  1394. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_models_shortrate.py +0 -0
  1395. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines.py +0 -0
  1396. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_asian.py +0 -0
  1397. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_barrier.py +0 -0
  1398. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_capfloor.py +0 -0
  1399. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_cliquet.py +0 -0
  1400. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_credit.py +0 -0
  1401. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_forward.py +0 -0
  1402. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_lookback.py +0 -0
  1403. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_quanto.py +0 -0
  1404. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_swaption.py +0 -0
  1405. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_processes.py +0 -0
  1406. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_termstructures.py +0 -0
  1407. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_termstructures_credit.py +0 -0
  1408. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_termstructures_inflation.py +0 -0
  1409. {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_utilities.py +0 -0
@@ -0,0 +1,24 @@
1
+ # Local environments & build artifacts (platform-specific)
2
+ venv/
3
+ build/
4
+ dist/
5
+ wheelhouse/
6
+ _skbuild/
7
+ *.egg-info/
8
+
9
+ # Caches and compiled files (any level)
10
+ **/__pycache__/
11
+ **/*.py[cod]
12
+ **/*.so
13
+ **/*.pyd
14
+ **/.DS_Store
15
+
16
+ # Generated docs output
17
+ docs/_build/
18
+
19
+ # Root dot-files and dot-directories
20
+ .*
21
+
22
+ # Only README.md is needed at the root (pyproject readme); skip other top-level notes
23
+ /*.md
24
+ !/README.md
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Report a bug or unexpected behavior
4
+ title: '[BUG] '
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ ## Description
10
+ <!-- Brief description of the bug -->
11
+
12
+ ## Environment
13
+ - **OS**: <!-- e.g., macOS 14, Ubuntu 24.04, Windows 11 -->
14
+ - **Python**: <!-- e.g., 3.11.5 -->
15
+ - **QuantLib**: <!-- e.g., 1.43 (source) -->
16
+ - **PyQuantLib**: <!-- e.g., 0.1.0 or commit hash -->
17
+
18
+ ## Steps to Reproduce
19
+ ```python
20
+ # Minimal code to reproduce
21
+ ```
22
+
23
+ ## Expected Behavior
24
+ <!-- What should happen -->
25
+
26
+ ## Actual Behavior
27
+ <!-- What happens instead -->
28
+
29
+ ## Error/Traceback
30
+ ```
31
+ <!-- Paste error message or traceback if applicable -->
32
+ ```
33
+
34
+ ## Additional Context
35
+ <!-- Any other relevant info -->
@@ -0,0 +1,56 @@
1
+ # Build QuantLib and Boost dependencies for Windows wheel builds.
2
+ # Called by cibuildwheel via CIBW_BEFORE_ALL_WINDOWS.
3
+ #
4
+ # Expects environment variables:
5
+ # BOOST_VERSION (e.g. "1.86.0")
6
+ # QUANTLIB_VERSION (e.g. "1.43")
7
+
8
+ $ErrorActionPreference = 'Stop'
9
+
10
+ # --- Boost headers ---
11
+ $BOOST_VERSION_UNDERSCORE = $env:BOOST_VERSION -replace '\.', '_'
12
+ Write-Host "Downloading Boost $env:BOOST_VERSION headers..."
13
+ Invoke-WebRequest -Uri "https://archives.boost.io/release/$env:BOOST_VERSION/source/boost_${BOOST_VERSION_UNDERSCORE}.zip" -OutFile boost.zip
14
+ Write-Host "Extracting Boost headers..."
15
+ 7z x boost.zip -oC:/boost-temp -y | Out-Null
16
+ New-Item -ItemType Directory -Path C:/boost/include -Force | Out-Null
17
+ Move-Item "C:/boost-temp/boost_${BOOST_VERSION_UNDERSCORE}/boost" "C:/boost/include/boost"
18
+ Remove-Item -Recurse -Force C:/boost-temp, boost.zip
19
+ Write-Host "Boost headers installed to C:/boost/include"
20
+
21
+ # --- QuantLib ---
22
+ Write-Host "Downloading QuantLib $env:QUANTLIB_VERSION..."
23
+ Invoke-WebRequest -Uri "https://github.com/lballabio/QuantLib/releases/download/v$env:QUANTLIB_VERSION/QuantLib-$env:QUANTLIB_VERSION.tar.gz" -OutFile QuantLib.tar.gz
24
+ tar xzf QuantLib.tar.gz
25
+ Push-Location "QuantLib-$env:QUANTLIB_VERSION"
26
+ New-Item -ItemType Directory -Path build -Force | Out-Null
27
+ Push-Location build
28
+
29
+ Write-Host "Configuring QuantLib..."
30
+ # No -G pin: CMake picks the runner's newest VS, matching scikit-build-core.
31
+ cmake .. -A x64 `
32
+ -DCMAKE_BUILD_TYPE=Release `
33
+ -DCMAKE_INSTALL_PREFIX=C:/quantlib `
34
+ -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreadedDLL `
35
+ -DQL_USE_STD_SHARED_PTR=ON `
36
+ -DQL_USE_STD_OPTIONAL=ON `
37
+ -DQL_USE_STD_ANY=ON `
38
+ -DQL_BUILD_EXAMPLES=OFF `
39
+ -DQL_BUILD_TEST_SUITE=OFF `
40
+ -DQL_BUILD_BENCHMARK=OFF `
41
+ -DBoost_INCLUDE_DIR=C:/boost/include
42
+
43
+ if ($LASTEXITCODE -ne 0) { throw "QuantLib CMake configure failed" }
44
+
45
+ Write-Host "Building QuantLib..."
46
+ cmake --build . --config Release --parallel
47
+
48
+ if ($LASTEXITCODE -ne 0) { throw "QuantLib build failed" }
49
+
50
+ Write-Host "Installing QuantLib..."
51
+ cmake --install . --config Release
52
+
53
+ Pop-Location
54
+ Pop-Location
55
+ Remove-Item -Recurse -Force "QuantLib-$env:QUANTLIB_VERSION", QuantLib.tar.gz
56
+ Write-Host "QuantLib installed to C:/quantlib"
@@ -0,0 +1,86 @@
1
+ # PyQuantLib: Python bindings for QuantLib
2
+ # Copyright (c) 2025 Yassine Idyiahia
3
+ #
4
+ # QuantLib is copyright of its respective contributors.
5
+ # QuantLib is free software under a modified BSD license.
6
+ # See http://quantlib.org/ for more information.
7
+ #
8
+ # Source: https://github.com/quantales/pyquantlib
9
+ # Licensed under the BSD 3-Clause License. See LICENSE file for details.
10
+
11
+ name: Docker image
12
+
13
+ on:
14
+ workflow_dispatch:
15
+ push:
16
+ branches: [main]
17
+ paths:
18
+ - "Dockerfile"
19
+ - ".dockerignore"
20
+ - "src/**"
21
+ - "include/**"
22
+ - "CMakeLists.txt"
23
+ - "pyproject.toml"
24
+ - ".github/workflows/docker.yml"
25
+ pull_request:
26
+ paths:
27
+ - "Dockerfile"
28
+ - ".dockerignore"
29
+ - "src/**"
30
+ - "include/**"
31
+ - "CMakeLists.txt"
32
+ - "pyproject.toml"
33
+ - ".github/workflows/docker.yml"
34
+
35
+ jobs:
36
+ build:
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - uses: actions/checkout@v4
40
+
41
+ - name: Set up Docker Buildx
42
+ uses: docker/setup-buildx-action@v3
43
+
44
+ - name: Build image
45
+ uses: docker/build-push-action@v6
46
+ with:
47
+ context: .
48
+ load: true
49
+ tags: pyquantlib:ci
50
+ cache-from: type=gha
51
+ cache-to: type=gha,mode=max
52
+
53
+ - name: Smoke test
54
+ run: |
55
+ docker run --rm pyquantlib:ci python -c "
56
+ import pyquantlib as ql
57
+ print('PyQuantLib', ql.__version__)
58
+ # Exercises the Settings singleton: the canary for a correct static QuantLib build.
59
+ ql.Settings.evaluationDate = ql.Date(15, ql.January, 2025)
60
+ assert ql.Settings.evaluationDate == ql.Date(15, ql.January, 2025)
61
+ q = ql.SimpleQuote(100.0)
62
+ assert q.value() == 100.0
63
+ print('Smoke test passed')
64
+ "
65
+
66
+ - name: JupyterLab server test
67
+ run: |
68
+ # Launch the image with its real CMD and confirm the server serves /lab.
69
+ docker run -d --rm --name pql-jupyter -p 8888:8888 pyquantlib:ci
70
+ ready=0
71
+ for i in $(seq 1 30); do
72
+ code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:8888/lab || true)
73
+ if [ "$code" = "200" ]; then
74
+ echo "JupyterLab responded with HTTP 200 (attempt $i)"
75
+ ready=1
76
+ break
77
+ fi
78
+ echo "attempt $i: HTTP $code, waiting..."
79
+ sleep 2
80
+ done
81
+ if [ "$ready" -ne 1 ]; then
82
+ echo "JupyterLab did not become ready in time; container logs:"
83
+ docker logs pql-jupyter || true
84
+ fi
85
+ docker stop pql-jupyter
86
+ test "$ready" -eq 1
@@ -0,0 +1,160 @@
1
+ # PyQuantLib: Python bindings for QuantLib
2
+ # Copyright (c) 2025 Yassine Idyiahia
3
+ #
4
+ # QuantLib is copyright of its respective contributors.
5
+ # QuantLib is free software under a modified BSD license.
6
+ # See http://quantlib.org/ for more information.
7
+ #
8
+ # Source: https://github.com/quantales/pyquantlib
9
+ # Licensed under the BSD 3-Clause License. See LICENSE file for details.
10
+
11
+ name: Docs
12
+
13
+ # Builds the docs against PyQuantLib compiled from this checkout, so autodoc
14
+ # resolves bindings that are not in the published wheel yet. Read the Docs
15
+ # builds against the PyPI wheel instead, which means types added since the last
16
+ # release are missing from the live site until the next release ships.
17
+
18
+ env:
19
+ QUANTLIB_VERSION: "1.43"
20
+
21
+ on:
22
+ workflow_dispatch:
23
+ push:
24
+ branches: [main]
25
+ paths:
26
+ - "docs/**"
27
+ - "examples/**"
28
+ - "src/**"
29
+ - "include/**"
30
+ - ".readthedocs.yaml"
31
+ - ".github/workflows/docs.yml"
32
+ pull_request:
33
+ paths:
34
+ - "docs/**"
35
+ - "examples/**"
36
+ - "src/**"
37
+ - "include/**"
38
+ - ".readthedocs.yaml"
39
+ - ".github/workflows/docs.yml"
40
+
41
+ jobs:
42
+ build:
43
+ runs-on: ubuntu-latest
44
+
45
+ steps:
46
+ - uses: actions/checkout@v4
47
+
48
+ - name: Set up Python
49
+ uses: actions/setup-python@v5
50
+ with:
51
+ python-version: "3.11"
52
+ cache: 'pip'
53
+
54
+ - name: Install system dependencies
55
+ run: |
56
+ sudo apt-get update
57
+ sudo apt-get install -y libboost-all-dev cmake ninja-build
58
+
59
+ # Same key as the Linux build job, so this is normally a cache hit.
60
+ - name: Cache QuantLib
61
+ id: cache-quantlib
62
+ uses: actions/cache@v4
63
+ with:
64
+ path: /home/runner/quantlib-install
65
+ key: quantlib-${{ env.QUANTLIB_VERSION }}-static-ubuntu-latest-v1
66
+ restore-keys: |
67
+ quantlib-${{ env.QUANTLIB_VERSION }}-static-ubuntu-latest-
68
+
69
+ - name: Build QuantLib from source
70
+ if: steps.cache-quantlib.outputs.cache-hit != 'true'
71
+ run: |
72
+ wget https://github.com/lballabio/QuantLib/releases/download/v${{ env.QUANTLIB_VERSION }}/QuantLib-${{ env.QUANTLIB_VERSION }}.tar.gz
73
+ tar xzf QuantLib-${{ env.QUANTLIB_VERSION }}.tar.gz
74
+ cd QuantLib-${{ env.QUANTLIB_VERSION }}
75
+ mkdir -p build && cd build
76
+ cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/runner/quantlib-install -DBUILD_SHARED_LIBS=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DQL_USE_STD_SHARED_PTR=ON -DQL_USE_STD_OPTIONAL=ON -DQL_USE_STD_ANY=ON -DQL_BUILD_EXAMPLES=OFF -DQL_BUILD_TEST_SUITE=OFF -DQL_BUILD_BENCHMARK=OFF
77
+ ninja
78
+ ninja install
79
+
80
+ - name: Install documentation dependencies
81
+ run: |
82
+ python -m pip install --upgrade pip
83
+ pip install -r docs/requirements.txt
84
+
85
+ # Compiling the bindings dominates this job's run time, and it reruns on
86
+ # every docs-only change. sccache keeps the object cache between runs.
87
+ - name: Set up sccache
88
+ uses: mozilla-actions/sccache-action@v0.0.6
89
+ continue-on-error: true
90
+
91
+ # A cache must never break the build. When the GitHub Actions cache
92
+ # service is unavailable, sccache fails to start its server and every
93
+ # compile fails (seen 2026-08-23). Probe it and fall back to an
94
+ # uncached build instead.
95
+ - name: Probe sccache
96
+ id: sccache_probe
97
+ continue-on-error: true
98
+ env:
99
+ SCCACHE_GHA_ENABLED: "true"
100
+ run: |
101
+ if command -v sccache >/dev/null 2>&1 && sccache --start-server >/dev/null 2>&1; then
102
+ echo "sccache is available; using it as the compiler launcher"
103
+ echo 'cmake_args=-DCMAKE_C_COMPILER_LAUNCHER=sccache;-DCMAKE_CXX_COMPILER_LAUNCHER=sccache' >> "$GITHUB_OUTPUT"
104
+ echo "enabled=true" >> "$GITHUB_OUTPUT"
105
+ else
106
+ echo "sccache unavailable; building without a compiler cache"
107
+ echo 'cmake_args=' >> "$GITHUB_OUTPUT"
108
+ echo "enabled=false" >> "$GITHUB_OUTPUT"
109
+ fi
110
+
111
+ # Replaces the PyPI wheel pulled in above. conf.py keeps the source tree
112
+ # on sys.path once a compiled extension is present there.
113
+ - name: Build PyQuantLib from this checkout
114
+ run: |
115
+ pip install -e . -v
116
+ if [ "${{ steps.sccache_probe.outputs.enabled }}" = "true" ]; then
117
+ sccache --show-stats || true
118
+ fi
119
+ env:
120
+ QuantLib_ROOT: /home/runner/quantlib-install
121
+ LD_LIBRARY_PATH: /home/runner/quantlib-install/lib
122
+ SCCACHE_GHA_ENABLED: "true"
123
+ SKBUILD_CMAKE_ARGS: ${{ steps.sccache_probe.outputs.cmake_args }}
124
+
125
+ - name: Build HTML with warnings as errors
126
+ run: |
127
+ python -m sphinx -b html -W --keep-going docs docs/_build/html
128
+ env:
129
+ LD_LIBRARY_PATH: /home/runner/quantlib-install/lib
130
+
131
+ - name: Upload built docs
132
+ uses: actions/upload-artifact@v4
133
+ with:
134
+ name: html
135
+ path: docs/_build/html
136
+ retention-days: 7
137
+
138
+ linkcheck:
139
+ runs-on: ubuntu-latest
140
+ # External links break for reasons outside this repository, so a failure
141
+ # here is reported but does not block the branch.
142
+ continue-on-error: true
143
+
144
+ steps:
145
+ - uses: actions/checkout@v4
146
+
147
+ - name: Set up Python
148
+ uses: actions/setup-python@v5
149
+ with:
150
+ python-version: "3.11"
151
+ cache: 'pip'
152
+
153
+ - name: Install documentation dependencies
154
+ run: |
155
+ python -m pip install --upgrade pip
156
+ pip install -r docs/requirements.txt
157
+
158
+ - name: Check links
159
+ run: |
160
+ python -m sphinx -b linkcheck docs docs/_build/linkcheck
@@ -0,0 +1,115 @@
1
+ # PyQuantLib: Python bindings for QuantLib
2
+ # Copyright (c) 2025 Yassine Idyiahia
3
+ #
4
+ # QuantLib is copyright of its respective contributors.
5
+ # QuantLib is free software under a modified BSD license.
6
+ # See http://quantlib.org/ for more information.
7
+ #
8
+ # Source: https://github.com/quantales/pyquantlib
9
+ # Licensed under the BSD 3-Clause License. See LICENSE file for details.
10
+
11
+ name: Linux build
12
+
13
+ on:
14
+ workflow_dispatch:
15
+ push:
16
+ branches: [main]
17
+ paths:
18
+ - "src/**"
19
+ - "include/**"
20
+ - "CMakeLists.txt"
21
+ - "pyproject.toml"
22
+ - ".github/workflows/linux.yml"
23
+ pull_request:
24
+ paths:
25
+ - "src/**"
26
+ - "include/**"
27
+ - "CMakeLists.txt"
28
+ - "pyproject.toml"
29
+ - ".github/workflows/linux.yml"
30
+
31
+ env:
32
+ QUANTLIB_VERSION: "1.43"
33
+
34
+ jobs:
35
+ build:
36
+ runs-on: ubuntu-latest
37
+ strategy:
38
+ fail-fast: false
39
+ matrix:
40
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
41
+
42
+ steps:
43
+ - uses: actions/checkout@v4
44
+
45
+ - name: Set up Python ${{ matrix.python-version }}
46
+ uses: actions/setup-python@v5
47
+ with:
48
+ python-version: ${{ matrix.python-version }}
49
+ cache: 'pip'
50
+
51
+ - name: Install system dependencies
52
+ run: |
53
+ sudo apt-get update
54
+ sudo apt-get install -y libboost-all-dev cmake ninja-build
55
+
56
+ - name: Cache QuantLib
57
+ id: cache-quantlib
58
+ uses: actions/cache@v4
59
+ with:
60
+ path: /home/runner/quantlib-install
61
+ key: quantlib-${{ env.QUANTLIB_VERSION }}-static-ubuntu-latest-v1
62
+ restore-keys: |
63
+ quantlib-${{ env.QUANTLIB_VERSION }}-static-ubuntu-latest-
64
+
65
+ - name: Build QuantLib from source
66
+ if: steps.cache-quantlib.outputs.cache-hit != 'true'
67
+ run: |
68
+ wget https://github.com/lballabio/QuantLib/releases/download/v${{ env.QUANTLIB_VERSION }}/QuantLib-${{ env.QUANTLIB_VERSION }}.tar.gz
69
+ tar xzf QuantLib-${{ env.QUANTLIB_VERSION }}.tar.gz
70
+ cd QuantLib-${{ env.QUANTLIB_VERSION }}
71
+ mkdir -p build && cd build
72
+ cmake .. -G Ninja \
73
+ -DCMAKE_BUILD_TYPE=Release \
74
+ -DCMAKE_INSTALL_PREFIX=/home/runner/quantlib-install \
75
+ -DBUILD_SHARED_LIBS=OFF \
76
+ -DCMAKE_POSITION_INDEPENDENT_CODE=ON \
77
+ -DQL_USE_STD_SHARED_PTR=ON \
78
+ -DQL_USE_STD_OPTIONAL=ON \
79
+ -DQL_USE_STD_ANY=ON \
80
+ -DQL_BUILD_EXAMPLES=OFF \
81
+ -DQL_BUILD_TEST_SUITE=OFF \
82
+ -DQL_BUILD_BENCHMARK=OFF
83
+ ninja
84
+ ninja install
85
+
86
+ - name: Verify QuantLib configuration
87
+ run: |
88
+ echo "Checking QuantLib config.hpp for std:: flags..."
89
+ grep -E "QL_USE_STD_(SHARED_PTR|OPTIONAL|ANY)" /home/runner/quantlib-install/include/ql/config.hpp || echo "Flags not found in config.hpp"
90
+
91
+ - name: Install Python build dependencies
92
+ run: |
93
+ python -m pip install --upgrade pip
94
+
95
+ - name: Build package with dev dependencies
96
+ run: |
97
+ pip install -e .[dev] -v
98
+ env:
99
+ QuantLib_ROOT: /home/runner/quantlib-install
100
+ LD_LIBRARY_PATH: /home/runner/quantlib-install/lib
101
+
102
+ - name: Run tests with coverage
103
+ run: |
104
+ pytest --cov=pyquantlib --cov=tests --cov-report=xml --cov-report=term-missing
105
+ env:
106
+ LD_LIBRARY_PATH: /home/runner/quantlib-install/lib
107
+
108
+ - name: Upload coverage to Codecov
109
+ uses: codecov/codecov-action@v5
110
+ with:
111
+ files: ./coverage.xml
112
+ fail_ci_if_error: false
113
+ verbose: true
114
+ env:
115
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
@@ -0,0 +1,102 @@
1
+ # PyQuantLib: Python bindings for QuantLib
2
+ # Copyright (c) 2025 Yassine Idyiahia
3
+ #
4
+ # QuantLib is copyright of its respective contributors.
5
+ # QuantLib is free software under a modified BSD license.
6
+ # See http://quantlib.org/ for more information.
7
+ #
8
+ # Source: https://github.com/quantales/pyquantlib
9
+ # Licensed under the BSD 3-Clause License. See LICENSE file for details.
10
+
11
+ name: macOS build
12
+
13
+ on:
14
+ workflow_dispatch:
15
+ push:
16
+ branches: [main]
17
+ paths:
18
+ - "src/**"
19
+ - "include/**"
20
+ - "CMakeLists.txt"
21
+ - "pyproject.toml"
22
+ - ".github/workflows/macos.yml"
23
+ pull_request:
24
+ paths:
25
+ - "src/**"
26
+ - "include/**"
27
+ - "CMakeLists.txt"
28
+ - "pyproject.toml"
29
+ - ".github/workflows/macos.yml"
30
+
31
+ env:
32
+ QUANTLIB_VERSION: "1.43"
33
+
34
+ jobs:
35
+ build:
36
+ runs-on: macos-latest
37
+ strategy:
38
+ fail-fast: false
39
+ matrix:
40
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
41
+
42
+ steps:
43
+ - uses: actions/checkout@v4
44
+
45
+ - name: Set up Python ${{ matrix.python-version }}
46
+ uses: actions/setup-python@v5
47
+ with:
48
+ python-version: ${{ matrix.python-version }}
49
+ cache: 'pip'
50
+
51
+ - name: Install system dependencies
52
+ run: |
53
+ brew install boost ninja
54
+
55
+ - name: Cache QuantLib
56
+ id: cache-quantlib
57
+ uses: actions/cache@v4
58
+ with:
59
+ path: /Users/runner/quantlib-install
60
+ key: quantlib-${{ env.QUANTLIB_VERSION }}-static-macos-latest-v1
61
+ restore-keys: |
62
+ quantlib-${{ env.QUANTLIB_VERSION }}-static-macos-latest-
63
+
64
+ - name: Build QuantLib from source
65
+ if: steps.cache-quantlib.outputs.cache-hit != 'true'
66
+ run: |
67
+ curl -L -o QuantLib.tar.gz https://github.com/lballabio/QuantLib/releases/download/v${{ env.QUANTLIB_VERSION }}/QuantLib-${{ env.QUANTLIB_VERSION }}.tar.gz
68
+ tar xzf QuantLib.tar.gz
69
+ cd QuantLib-${{ env.QUANTLIB_VERSION }}
70
+ mkdir -p build && cd build
71
+ cmake .. -G Ninja \
72
+ -DCMAKE_BUILD_TYPE=Release \
73
+ -DCMAKE_INSTALL_PREFIX=/Users/runner/quantlib-install \
74
+ -DBUILD_SHARED_LIBS=OFF \
75
+ -DCMAKE_POSITION_INDEPENDENT_CODE=ON \
76
+ -DQL_USE_STD_SHARED_PTR=ON \
77
+ -DQL_USE_STD_OPTIONAL=ON \
78
+ -DQL_USE_STD_ANY=ON \
79
+ -DQL_BUILD_EXAMPLES=OFF \
80
+ -DQL_BUILD_TEST_SUITE=OFF \
81
+ -DQL_BUILD_BENCHMARK=OFF
82
+ ninja
83
+ ninja install
84
+
85
+ - name: Verify QuantLib configuration
86
+ run: |
87
+ echo "Checking QuantLib config.hpp for std:: flags..."
88
+ grep -E "QL_USE_STD_(SHARED_PTR|OPTIONAL|ANY)" /Users/runner/quantlib-install/include/ql/config.hpp || echo "Flags not found in config.hpp"
89
+
90
+ - name: Install Python build dependencies
91
+ run: |
92
+ python -m pip install --upgrade pip
93
+
94
+ - name: Build package with dev dependencies
95
+ run: |
96
+ pip install -e .[dev] -v
97
+ env:
98
+ QuantLib_ROOT: /Users/runner/quantlib-install
99
+
100
+ - name: Run tests
101
+ run: |
102
+ pytest -v