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.
- pyquantlib-0.9.0/.dockerignore +24 -0
- pyquantlib-0.9.0/.github/ISSUE_TEMPLATE/bug_report.md +35 -0
- pyquantlib-0.9.0/.github/scripts/build-quantlib-windows.ps1 +56 -0
- pyquantlib-0.9.0/.github/workflows/docker.yml +86 -0
- pyquantlib-0.9.0/.github/workflows/docs.yml +160 -0
- pyquantlib-0.9.0/.github/workflows/linux.yml +115 -0
- pyquantlib-0.9.0/.github/workflows/macos.yml +102 -0
- pyquantlib-0.9.0/.github/workflows/wheels.yml +213 -0
- pyquantlib-0.9.0/.github/workflows/windows.yml +126 -0
- pyquantlib-0.9.0/.gitignore +133 -0
- pyquantlib-0.9.0/CONTRIBUTING.md +509 -0
- pyquantlib-0.9.0/Dockerfile +95 -0
- pyquantlib-0.9.0/PKG-INFO +210 -0
- pyquantlib-0.9.0/README.md +127 -0
- pyquantlib-0.9.0/docs/_static/custom.css +226 -0
- pyquantlib-0.9.0/docs/_static/favicon.svg +9 -0
- pyquantlib-0.9.0/docs/_static/logo.svg +26 -0
- pyquantlib-0.9.0/docs/_static/social-card.png +0 -0
- pyquantlib-0.9.0/docs/_static/wordmark-dark.svg +5 -0
- pyquantlib-0.9.0/docs/_static/wordmark-light.svg +5 -0
- pyquantlib-0.9.0/docs/api/cashflows.md +523 -0
- pyquantlib-0.9.0/docs/api/core.md +161 -0
- pyquantlib-0.9.0/docs/api/currencies.md +112 -0
- pyquantlib-0.9.0/docs/api/experimental.md +128 -0
- pyquantlib-0.9.0/docs/api/extensions.md +116 -0
- pyquantlib-0.9.0/docs/api/indexes.md +317 -0
- pyquantlib-0.9.0/docs/api/instruments.md +840 -0
- pyquantlib-0.9.0/docs/api/math.md +501 -0
- pyquantlib-0.9.0/docs/api/methods.md +514 -0
- pyquantlib-0.9.0/docs/api/models.md +342 -0
- pyquantlib-0.9.0/docs/api/pricingengines.md +1032 -0
- pyquantlib-0.9.0/docs/api/processes.md +210 -0
- pyquantlib-0.9.0/docs/api/quotes.md +136 -0
- pyquantlib-0.9.0/docs/api/termstructures.md +833 -0
- pyquantlib-0.9.0/docs/api/time.md +186 -0
- pyquantlib-0.9.0/docs/architecture.md +228 -0
- pyquantlib-0.9.0/docs/building.md +293 -0
- pyquantlib-0.9.0/docs/changelog.md +760 -0
- pyquantlib-0.9.0/docs/concepts/bridge-pattern-types.md +88 -0
- pyquantlib-0.9.0/docs/concepts/calibration.md +74 -0
- pyquantlib-0.9.0/docs/concepts/finite-difference.md +63 -0
- pyquantlib-0.9.0/docs/concepts/index.md +31 -0
- pyquantlib-0.9.0/docs/concepts/pricing-engines.md +66 -0
- pyquantlib-0.9.0/docs/concepts/quotes-and-observables.md +84 -0
- pyquantlib-0.9.0/docs/concepts/random-numbers.md +59 -0
- pyquantlib-0.9.0/docs/concepts/stochastic-processes.md +81 -0
- pyquantlib-0.9.0/docs/concepts/term-structures.md +88 -0
- pyquantlib-0.9.0/docs/conf.py +337 -0
- pyquantlib-0.9.0/docs/contributing.md +292 -0
- pyquantlib-0.9.0/docs/cookbook/american-fd.md +105 -0
- pyquantlib-0.9.0/docs/cookbook/bootstrap-yield-curve.md +106 -0
- pyquantlib-0.9.0/docs/cookbook/compare-engines.md +77 -0
- pyquantlib-0.9.0/docs/cookbook/heston-calibration.md +115 -0
- pyquantlib-0.9.0/docs/cookbook/index.md +38 -0
- pyquantlib-0.9.0/docs/cookbook/mc-convergence.md +98 -0
- pyquantlib-0.9.0/docs/cookbook/mc-engine-kwargs.md +122 -0
- pyquantlib-0.9.0/docs/cookbook/numpy-interop.md +128 -0
- pyquantlib-0.9.0/docs/cookbook/piecewise-mixed-helpers.md +112 -0
- pyquantlib-0.9.0/docs/cookbook/scenario-analysis.md +83 -0
- pyquantlib-0.9.0/docs/cookbook/spread-option-engines.md +70 -0
- pyquantlib-0.9.0/docs/cookbook/vol-surface.md +102 -0
- pyquantlib-0.9.0/docs/examples/index.md +54 -0
- pyquantlib-0.9.0/docs/extending.md +238 -0
- pyquantlib-0.9.0/docs/index.md +147 -0
- pyquantlib-0.9.0/docs/installation.md +64 -0
- pyquantlib-0.9.0/docs/internals.md +330 -0
- pyquantlib-0.9.0/docs/quickstart.md +219 -0
- pyquantlib-0.9.0/docs/requirements.txt +10 -0
- pyquantlib-0.9.0/examples/bermudan_swaption.ipynb +1042 -0
- pyquantlib-0.9.0/examples/bonds.ipynb +433 -0
- pyquantlib-0.9.0/examples/cds.ipynb +269 -0
- pyquantlib-0.9.0/examples/equity_option.ipynb +640 -0
- pyquantlib-0.9.0/examples/hello_pyquantlib.ipynb +366 -0
- pyquantlib-0.9.0/examples/inflation_derivatives.ipynb +926 -0
- pyquantlib-0.9.0/examples/multicurve_bootstrapping.ipynb +440 -0
- pyquantlib-0.9.0/examples/numpy_interoperability.ipynb +922 -0
- pyquantlib-0.9.0/examples/replication.ipynb +401 -0
- pyquantlib-0.9.0/examples/spread_option.ipynb +460 -0
- pyquantlib-0.9.0/examples/svi_smile.ipynb +819 -0
- pyquantlib-0.9.0/include/pyquantlib/binding_manager.h +221 -0
- pyquantlib-0.9.0/include/pyquantlib/interpolation_helper.h +212 -0
- pyquantlib-0.9.0/include/pyquantlib/null_utils.h +62 -0
- pyquantlib-0.9.0/include/pyquantlib/pyquantlib.h +714 -0
- pyquantlib-0.9.0/include/pyquantlib/shared_ptr_from_python.h +50 -0
- pyquantlib-0.9.0/include/pyquantlib/trampolines.h +1264 -0
- pyquantlib-0.9.0/include/pyquantlib/version.h +17 -0
- pyquantlib-0.9.0/licenseheader.txt +11 -0
- pyquantlib-0.9.0/pyquantlib/__init__.pyi +1175 -0
- pyquantlib-0.9.0/pyquantlib/_pyquantlib/__init__.pyi +26667 -0
- pyquantlib-0.9.0/pyquantlib/_pyquantlib/base.pyi +2318 -0
- pyquantlib-0.9.0/pyquantlib/builders.py +406 -0
- pyquantlib-0.9.0/pyquantlib/version.py +1 -0
- pyquantlib-0.9.0/pyquantlib/version.pyi +3 -0
- pyquantlib-0.9.0/scripts/make_social_card.py +96 -0
- pyquantlib-0.9.0/src/cashflows/all.cpp +84 -0
- pyquantlib-0.9.0/src/cashflows/averagebmacoupon.cpp +113 -0
- pyquantlib-0.9.0/src/cashflows/capflooredcoupon.cpp +130 -0
- pyquantlib-0.9.0/src/cashflows/capflooredinflationcoupon.cpp +88 -0
- pyquantlib-0.9.0/src/cashflows/cmscoupon.cpp +154 -0
- pyquantlib-0.9.0/src/cashflows/conundrumpricer.cpp +125 -0
- pyquantlib-0.9.0/src/cashflows/coupon.cpp +51 -0
- pyquantlib-0.9.0/src/cashflows/couponpricer.cpp +74 -0
- pyquantlib-0.9.0/src/cashflows/digitalcmscoupon.cpp +206 -0
- pyquantlib-0.9.0/src/cashflows/digitalcoupon.cpp +96 -0
- pyquantlib-0.9.0/src/cashflows/digitaliborcoupon.cpp +206 -0
- pyquantlib-0.9.0/src/cashflows/dividend.cpp +72 -0
- pyquantlib-0.9.0/src/cashflows/duration.cpp +28 -0
- pyquantlib-0.9.0/src/cashflows/fixedratecoupon.cpp +125 -0
- pyquantlib-0.9.0/src/cashflows/floatingratecoupon.cpp +81 -0
- pyquantlib-0.9.0/src/cashflows/iborcoupon.cpp +186 -0
- pyquantlib-0.9.0/src/cashflows/inflationcoupon.cpp +57 -0
- pyquantlib-0.9.0/src/cashflows/inflationcouponpricer.cpp +122 -0
- pyquantlib-0.9.0/src/cashflows/lineartsrpricer.cpp +138 -0
- pyquantlib-0.9.0/src/cashflows/overnightindexedcoupon.cpp +168 -0
- pyquantlib-0.9.0/src/cashflows/overnightindexedcouponpricer.cpp +74 -0
- pyquantlib-0.9.0/src/cashflows/rateaveraging.cpp +31 -0
- pyquantlib-0.9.0/src/cashflows/replication.cpp +43 -0
- pyquantlib-0.9.0/src/cashflows/simplecashflow.cpp +40 -0
- pyquantlib-0.9.0/src/cashflows/yoyinflationcoupon.cpp +163 -0
- pyquantlib-0.9.0/src/cashflows/zeroinflationcashflow.cpp +61 -0
- pyquantlib-0.9.0/src/core/all.cpp +47 -0
- pyquantlib-0.9.0/src/core/cashflow.cpp +40 -0
- pyquantlib-0.9.0/src/core/cdspricingmodel.cpp +27 -0
- pyquantlib-0.9.0/src/core/compounding.cpp +32 -0
- pyquantlib-0.9.0/src/core/constants.cpp +28 -0
- pyquantlib-0.9.0/src/core/currency.cpp +48 -0
- pyquantlib-0.9.0/src/core/default.cpp +27 -0
- pyquantlib-0.9.0/src/core/exchangerate.cpp +51 -0
- pyquantlib-0.9.0/src/core/exercise.cpp +50 -0
- pyquantlib-0.9.0/src/core/forward.cpp +73 -0
- pyquantlib-0.9.0/src/core/index.cpp +42 -0
- pyquantlib-0.9.0/src/core/instrument.cpp +42 -0
- pyquantlib-0.9.0/src/core/interestrate.cpp +126 -0
- pyquantlib-0.9.0/src/core/money.cpp +106 -0
- pyquantlib-0.9.0/src/core/option.cpp +68 -0
- pyquantlib-0.9.0/src/core/payoff.cpp +38 -0
- pyquantlib-0.9.0/src/core/position.cpp +27 -0
- pyquantlib-0.9.0/src/core/pricingengine.cpp +52 -0
- pyquantlib-0.9.0/src/core/quote.cpp +40 -0
- pyquantlib-0.9.0/src/core/settings.cpp +60 -0
- pyquantlib-0.9.0/src/core/stochasticprocess.cpp +80 -0
- pyquantlib-0.9.0/src/core/termstructure.cpp +55 -0
- pyquantlib-0.9.0/src/core/timegrid.cpp +73 -0
- pyquantlib-0.9.0/src/currencies/all.cpp +21 -0
- pyquantlib-0.9.0/src/currencies/currencies.cpp +795 -0
- pyquantlib-0.9.0/src/currencies/exchangeratemanager.cpp +46 -0
- pyquantlib-0.9.0/src/experimental/all.cpp +46 -0
- pyquantlib-0.9.0/src/experimental/callablebonds/blackcallablebondengine.cpp +81 -0
- pyquantlib-0.9.0/src/experimental/callablebonds/callablebond.cpp +134 -0
- pyquantlib-0.9.0/src/experimental/callablebonds/callablebondconstantvol.cpp +76 -0
- pyquantlib-0.9.0/src/experimental/callablebonds/callablebondvolstructure.cpp +67 -0
- pyquantlib-0.9.0/src/experimental/callablebonds/treecallablebondengine.cpp +89 -0
- pyquantlib-0.9.0/src/experimental/credit/blackcdsoptionengine.cpp +59 -0
- pyquantlib-0.9.0/src/experimental/credit/cdsoption.cpp +79 -0
- pyquantlib-0.9.0/src/experimental/variancegamma/analyticvariancegammaengine.cpp +31 -0
- pyquantlib-0.9.0/src/experimental/variancegamma/fftvariancegammaengine.cpp +31 -0
- pyquantlib-0.9.0/src/experimental/variancegamma/variancegammamodel.cpp +38 -0
- pyquantlib-0.9.0/src/experimental/variancegamma/variancegammaprocess.cpp +72 -0
- pyquantlib-0.9.0/src/experimental/volatility/svismilesection.cpp +74 -0
- pyquantlib-0.9.0/src/indexes/all.cpp +56 -0
- pyquantlib-0.9.0/src/indexes/bmaindex.cpp +51 -0
- pyquantlib-0.9.0/src/indexes/equityindex.cpp +87 -0
- pyquantlib-0.9.0/src/indexes/ibor/eonia.cpp +40 -0
- pyquantlib-0.9.0/src/indexes/ibor/estr.cpp +40 -0
- pyquantlib-0.9.0/src/indexes/ibor/euribor.cpp +117 -0
- pyquantlib-0.9.0/src/indexes/ibor/libor.cpp +120 -0
- pyquantlib-0.9.0/src/indexes/ibor/nibor.cpp +39 -0
- pyquantlib-0.9.0/src/indexes/ibor/shir.cpp +37 -0
- pyquantlib-0.9.0/src/indexes/ibor/sofr.cpp +40 -0
- pyquantlib-0.9.0/src/indexes/ibor/sonia.cpp +40 -0
- pyquantlib-0.9.0/src/indexes/ibor/usdlibor.cpp +80 -0
- pyquantlib-0.9.0/src/indexes/ibor/zaronia.cpp +37 -0
- pyquantlib-0.9.0/src/indexes/iborindex.cpp +119 -0
- pyquantlib-0.9.0/src/indexes/inflation/aucpi.cpp +71 -0
- pyquantlib-0.9.0/src/indexes/inflation/euhicp.cpp +83 -0
- pyquantlib-0.9.0/src/indexes/inflation/frhicp.cpp +53 -0
- pyquantlib-0.9.0/src/indexes/inflation/ukrpi.cpp +53 -0
- pyquantlib-0.9.0/src/indexes/inflation/uscpi.cpp +53 -0
- pyquantlib-0.9.0/src/indexes/inflation/zacpi.cpp +53 -0
- pyquantlib-0.9.0/src/indexes/inflationindex.cpp +194 -0
- pyquantlib-0.9.0/src/indexes/interestrateindex.cpp +65 -0
- pyquantlib-0.9.0/src/indexes/region.cpp +69 -0
- pyquantlib-0.9.0/src/indexes/swap/swapindexes.cpp +106 -0
- pyquantlib-0.9.0/src/indexes/swapindex.cpp +112 -0
- pyquantlib-0.9.0/src/indexes/swapspreadindex.cpp +46 -0
- pyquantlib-0.9.0/src/instruments/all.cpp +170 -0
- pyquantlib-0.9.0/src/instruments/asianoption.cpp +72 -0
- pyquantlib-0.9.0/src/instruments/assetswap.cpp +73 -0
- pyquantlib-0.9.0/src/instruments/averagetype.cpp +26 -0
- pyquantlib-0.9.0/src/instruments/barrieroption.cpp +50 -0
- pyquantlib-0.9.0/src/instruments/barriertype.cpp +28 -0
- pyquantlib-0.9.0/src/instruments/basketoption.cpp +107 -0
- pyquantlib-0.9.0/src/instruments/bond.cpp +179 -0
- pyquantlib-0.9.0/src/instruments/bondforward.cpp +78 -0
- pyquantlib-0.9.0/src/instruments/bonds/amortizingcmsratebond.cpp +68 -0
- pyquantlib-0.9.0/src/instruments/bonds/amortizingfixedratebond.cpp +80 -0
- pyquantlib-0.9.0/src/instruments/bonds/amortizingfloatingratebond.cpp +85 -0
- pyquantlib-0.9.0/src/instruments/bonds/cmsratebond.cpp +68 -0
- pyquantlib-0.9.0/src/instruments/bonds/convertiblebonds.cpp +159 -0
- pyquantlib-0.9.0/src/instruments/bonds/cpibond.cpp +90 -0
- pyquantlib-0.9.0/src/instruments/bonds/fixedratebond.cpp +75 -0
- pyquantlib-0.9.0/src/instruments/bonds/floatingratebond.cpp +79 -0
- pyquantlib-0.9.0/src/instruments/bonds/zerocouponbond.cpp +36 -0
- pyquantlib-0.9.0/src/instruments/callabilityschedule.cpp +46 -0
- pyquantlib-0.9.0/src/instruments/capfloor.cpp +109 -0
- pyquantlib-0.9.0/src/instruments/claim.cpp +51 -0
- pyquantlib-0.9.0/src/instruments/cliquetoption.cpp +36 -0
- pyquantlib-0.9.0/src/instruments/complexchooseroption.cpp +36 -0
- pyquantlib-0.9.0/src/instruments/compositeinstrument.cpp +38 -0
- pyquantlib-0.9.0/src/instruments/compoundoption.cpp +37 -0
- pyquantlib-0.9.0/src/instruments/constnotionalcrosscurrencybasisswap.cpp +125 -0
- pyquantlib-0.9.0/src/instruments/constnotionalcrosscurrencyfixedvsfloatingswap.cpp +151 -0
- pyquantlib-0.9.0/src/instruments/constnotionalcrosscurrencyswap.cpp +74 -0
- pyquantlib-0.9.0/src/instruments/creditdefaultswap.cpp +162 -0
- pyquantlib-0.9.0/src/instruments/doublebarrieroption.cpp +48 -0
- pyquantlib-0.9.0/src/instruments/doublebarriertype.cpp +28 -0
- pyquantlib-0.9.0/src/instruments/equitytotalreturnswap.cpp +123 -0
- pyquantlib-0.9.0/src/instruments/fixedvsfloatingswap.cpp +112 -0
- pyquantlib-0.9.0/src/instruments/floatfloatswap.cpp +207 -0
- pyquantlib-0.9.0/src/instruments/floatfloatswaption.cpp +48 -0
- pyquantlib-0.9.0/src/instruments/forwardrateagreement.cpp +87 -0
- pyquantlib-0.9.0/src/instruments/forwardvanillaoption.cpp +36 -0
- pyquantlib-0.9.0/src/instruments/futures.cpp +31 -0
- pyquantlib-0.9.0/src/instruments/fxforward.cpp +81 -0
- pyquantlib-0.9.0/src/instruments/holderextensibleoption.cpp +38 -0
- pyquantlib-0.9.0/src/instruments/inflationcapfloor.cpp +120 -0
- pyquantlib-0.9.0/src/instruments/lookbackoption.cpp +81 -0
- pyquantlib-0.9.0/src/instruments/makecapfloor.cpp +100 -0
- pyquantlib-0.9.0/src/instruments/makeois.cpp +209 -0
- pyquantlib-0.9.0/src/instruments/makeswaption.cpp +89 -0
- pyquantlib-0.9.0/src/instruments/makevanillaswap.cpp +193 -0
- pyquantlib-0.9.0/src/instruments/makeyoyinflationcapfloor.cpp +117 -0
- pyquantlib-0.9.0/src/instruments/margrabeoption.cpp +40 -0
- pyquantlib-0.9.0/src/instruments/multiassetoption.cpp +53 -0
- pyquantlib-0.9.0/src/instruments/multipleresetsswap.cpp +65 -0
- pyquantlib-0.9.0/src/instruments/nonstandardswap.cpp +160 -0
- pyquantlib-0.9.0/src/instruments/nonstandardswaption.cpp +53 -0
- pyquantlib-0.9.0/src/instruments/oneassetoption.cpp +82 -0
- pyquantlib-0.9.0/src/instruments/overnightindexedswap.cpp +94 -0
- pyquantlib-0.9.0/src/instruments/overnightindexfuture.cpp +60 -0
- pyquantlib-0.9.0/src/instruments/partialtimebarrieroption.cpp +50 -0
- pyquantlib-0.9.0/src/instruments/payoffs.cpp +104 -0
- pyquantlib-0.9.0/src/instruments/perpetualfutures.cpp +55 -0
- pyquantlib-0.9.0/src/instruments/quantoforwardvanillaoption.cpp +42 -0
- pyquantlib-0.9.0/src/instruments/quantovanillaoption.cpp +39 -0
- pyquantlib-0.9.0/src/instruments/simplechooseroption.cpp +32 -0
- pyquantlib-0.9.0/src/instruments/softbarrieroption.cpp +47 -0
- pyquantlib-0.9.0/src/instruments/swap.cpp +118 -0
- pyquantlib-0.9.0/src/instruments/swaption.cpp +110 -0
- pyquantlib-0.9.0/src/instruments/twoassetbarrieroption.cpp +38 -0
- pyquantlib-0.9.0/src/instruments/twoassetcorrelationoption.cpp +34 -0
- pyquantlib-0.9.0/src/instruments/vanillaoption.cpp +32 -0
- pyquantlib-0.9.0/src/instruments/vanillaswap.cpp +45 -0
- pyquantlib-0.9.0/src/instruments/vanillaswingoption.cpp +52 -0
- pyquantlib-0.9.0/src/instruments/varianceswap.cpp +45 -0
- pyquantlib-0.9.0/src/instruments/writerextensibleoption.cpp +41 -0
- pyquantlib-0.9.0/src/instruments/yearonyearinflationswap.cpp +108 -0
- pyquantlib-0.9.0/src/instruments/zerocouponinflationswap.cpp +118 -0
- pyquantlib-0.9.0/src/instruments/zerocouponswap.cpp +78 -0
- pyquantlib-0.9.0/src/main.cpp +59 -0
- pyquantlib-0.9.0/src/math/all.cpp +119 -0
- pyquantlib-0.9.0/src/math/array.cpp +218 -0
- pyquantlib-0.9.0/src/math/distributions/bivariatenormaldistribution.cpp +32 -0
- pyquantlib-0.9.0/src/math/distributions/normaldistribution.cpp +64 -0
- pyquantlib-0.9.0/src/math/integrals/expsinhintegral.cpp +41 -0
- pyquantlib-0.9.0/src/math/integrals/gaussianquadratures.cpp +151 -0
- pyquantlib-0.9.0/src/math/integrals/gausslobattointegral.cpp +42 -0
- pyquantlib-0.9.0/src/math/integrals/integral.cpp +46 -0
- pyquantlib-0.9.0/src/math/integrals/kronrodintegral.cpp +49 -0
- pyquantlib-0.9.0/src/math/integrals/segmentintegral.cpp +29 -0
- pyquantlib-0.9.0/src/math/integrals/simpsonintegral.cpp +30 -0
- pyquantlib-0.9.0/src/math/integrals/tanhsinhintegral.cpp +34 -0
- pyquantlib-0.9.0/src/math/integrals/trapezoidintegral.cpp +38 -0
- pyquantlib-0.9.0/src/math/interpolations/backwardflatinterpolation.cpp +27 -0
- pyquantlib-0.9.0/src/math/interpolations/backwardflatlinearinterpolation.cpp +26 -0
- pyquantlib-0.9.0/src/math/interpolations/bicubicsplineinterpolation.cpp +41 -0
- pyquantlib-0.9.0/src/math/interpolations/bilinearinterpolation.cpp +26 -0
- pyquantlib-0.9.0/src/math/interpolations/chebyshevinterpolation.cpp +58 -0
- pyquantlib-0.9.0/src/math/interpolations/convexmonotoneinterpolation.cpp +54 -0
- pyquantlib-0.9.0/src/math/interpolations/cubicinterpolation.cpp +79 -0
- pyquantlib-0.9.0/src/math/interpolations/extrapolation.cpp +33 -0
- pyquantlib-0.9.0/src/math/interpolations/flatextrapolation.cpp +31 -0
- pyquantlib-0.9.0/src/math/interpolations/flatextrapolation2d.cpp +30 -0
- pyquantlib-0.9.0/src/math/interpolations/forwardflatinterpolation.cpp +26 -0
- pyquantlib-0.9.0/src/math/interpolations/interpolation.cpp +53 -0
- pyquantlib-0.9.0/src/math/interpolations/interpolation2d.cpp +52 -0
- pyquantlib-0.9.0/src/math/interpolations/lagrangeinterpolation.cpp +36 -0
- pyquantlib-0.9.0/src/math/interpolations/linearinterpolation.cpp +26 -0
- pyquantlib-0.9.0/src/math/interpolations/loginterpolation.cpp +117 -0
- pyquantlib-0.9.0/src/math/interpolations/loglinearinterpolation.cpp +26 -0
- pyquantlib-0.9.0/src/math/interpolations/mixedinterpolation.cpp +97 -0
- pyquantlib-0.9.0/src/math/interpolations/sabrinterpolation.cpp +104 -0
- pyquantlib-0.9.0/src/math/matrix.cpp +229 -0
- pyquantlib-0.9.0/src/math/matrixutilities/svd.cpp +48 -0
- pyquantlib-0.9.0/src/math/matrixutilities/symmetricschurdecomposition.cpp +35 -0
- pyquantlib-0.9.0/src/math/ode/adaptiverungekutta.cpp +54 -0
- pyquantlib-0.9.0/src/math/optimization/bfgs.cpp +28 -0
- pyquantlib-0.9.0/src/math/optimization/conjugategradient.cpp +29 -0
- pyquantlib-0.9.0/src/math/optimization/constraint.cpp +50 -0
- pyquantlib-0.9.0/src/math/optimization/costfunction.cpp +34 -0
- pyquantlib-0.9.0/src/math/optimization/differentialevolution.cpp +120 -0
- pyquantlib-0.9.0/src/math/optimization/endcriteria.cpp +102 -0
- pyquantlib-0.9.0/src/math/optimization/lbfgsb.cpp +41 -0
- pyquantlib-0.9.0/src/math/optimization/levenbergmarquardt.cpp +31 -0
- pyquantlib-0.9.0/src/math/optimization/method.cpp +31 -0
- pyquantlib-0.9.0/src/math/optimization/problem.cpp +49 -0
- pyquantlib-0.9.0/src/math/optimization/simplex.cpp +31 -0
- pyquantlib-0.9.0/src/math/optimization/steepestdescent.cpp +29 -0
- pyquantlib-0.9.0/src/math/randomnumbers/boxmullergaussianrng.cpp +38 -0
- pyquantlib-0.9.0/src/math/randomnumbers/burley2020sobolrsg.cpp +46 -0
- pyquantlib-0.9.0/src/math/randomnumbers/haltonrsg.cpp +40 -0
- pyquantlib-0.9.0/src/math/randomnumbers/inversecumulativerng.cpp +41 -0
- pyquantlib-0.9.0/src/math/randomnumbers/inversecumulativersg.cpp +79 -0
- pyquantlib-0.9.0/src/math/randomnumbers/mt19937uniformrng.cpp +38 -0
- pyquantlib-0.9.0/src/math/randomnumbers/randomsequencegenerator.cpp +47 -0
- pyquantlib-0.9.0/src/math/randomnumbers/sobolbrownianbridgersg.cpp +67 -0
- pyquantlib-0.9.0/src/math/randomnumbers/sobolrsg.cpp +61 -0
- pyquantlib-0.9.0/src/math/richardsonextrapolation.cpp +42 -0
- pyquantlib-0.9.0/src/math/rounding.cpp +80 -0
- pyquantlib-0.9.0/src/math/solvers1d/solvers1d.cpp +117 -0
- pyquantlib-0.9.0/src/math/statistics/incrementalstatistics.cpp +79 -0
- pyquantlib-0.9.0/src/math/statistics/sequencestatistics.cpp +120 -0
- pyquantlib-0.9.0/src/math/statistics/statistics.cpp +138 -0
- pyquantlib-0.9.0/src/methods/all.cpp +189 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/boundarycondition.cpp +40 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/concentrating1dmesher.cpp +51 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/exponentialjump1dmesher.cpp +48 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdm1dmesher.cpp +45 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmblackscholesmesher.cpp +72 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmcev1dmesher.cpp +44 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmhestonvariancemesher.cpp +60 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmmesher.cpp +42 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmmeshercomposite.cpp +57 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/fdmsimpleprocess1dmesher.cpp +44 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/glued1dmesher.cpp +30 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/predefined1dmesher.cpp +31 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/meshers/uniform1dmesher.cpp +30 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdm2dblackscholesop.cpp +48 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmbatesop.cpp +41 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmblackscholesfwdop.cpp +46 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmblackscholesop.cpp +50 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmcevop.cpp +49 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmg2op.cpp +35 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhestonfwdop.cpp +40 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhestonhullwhiteop.cpp +37 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhestonop.cpp +41 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmhullwhiteop.cpp +34 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearop.cpp +29 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearopcomposite.cpp +44 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearopiterator.cpp +47 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlinearoplayout.cpp +74 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmlocalvolfwdop.cpp +41 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmornsteinuhlenbeckop.cpp +37 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmsabrop.cpp +36 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/fdmsquarerootfwdop.cpp +51 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/firstderivativeop.cpp +31 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/ninepointlinearop.cpp +37 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/nthorderderivativeop.cpp +33 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/secondderivativeop.cpp +31 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/secondordermixedderivativeop.cpp +31 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/operators/triplebandlinearop.cpp +56 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/craigsneydscheme.cpp +42 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/cranknicolsonscheme.cpp +46 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/douglasscheme.cpp +41 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/expliciteulerscheme.cpp +40 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/hundsdorferscheme.cpp +42 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/impliciteulerscheme.cpp +52 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/methodoflinesscheme.cpp +42 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/schemes/modifiedcraigsneydscheme.cpp +42 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm1dimsolver.cpp +48 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm2dblackscholessolver.cpp +96 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm2dimsolver.cpp +57 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdm3dimsolver.cpp +42 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmbackwardsolver.cpp +101 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmbatessolver.cpp +81 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmblackscholessolver.cpp +98 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmg2solver.cpp +55 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmhestonsolver.cpp +96 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmhullwhitesolver.cpp +55 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/solvers/fdmsolverdesc.cpp +56 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepcondition.cpp +33 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmamericanstepcondition.cpp +34 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmarithmeticaveragecondition.cpp +37 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmbermudanstepcondition.cpp +45 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmsimpleswingcondition.cpp +40 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmsnapshotcondition.cpp +36 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/stepconditions/fdmstepconditioncomposite.cpp +58 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/bsmrndcalculator.cpp +32 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/cevrndcalculator.cpp +34 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmdirichletboundary.cpp +36 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmdiscountdirichletboundary.cpp +40 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmdividendhandler.cpp +51 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmhestongreensfct.cpp +28 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdminnervaluecalculator.cpp +92 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmquantohelper.cpp +56 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/fdmtimedepdirichletboundary.cpp +38 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/gbsmrndcalculator.cpp +32 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/hestonrndcalculator.cpp +34 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/localvolrndcalculator.cpp +91 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/riskneutraldensitycalculator.cpp +36 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/smilesectionrndcalculator.cpp +62 -0
- pyquantlib-0.9.0/src/methods/finitedifferences/utilities/squarerootprocessrndcalculator.cpp +41 -0
- pyquantlib-0.9.0/src/methods/montecarlo/brownianbridge.cpp +67 -0
- pyquantlib-0.9.0/src/methods/montecarlo/lsmbasissystem.cpp +33 -0
- pyquantlib-0.9.0/src/methods/montecarlo/multipath.cpp +48 -0
- pyquantlib-0.9.0/src/methods/montecarlo/multipathgenerator.cpp +72 -0
- pyquantlib-0.9.0/src/methods/montecarlo/path.cpp +52 -0
- pyquantlib-0.9.0/src/methods/montecarlo/pathgenerator.cpp +87 -0
- pyquantlib-0.9.0/src/methods/montecarlo/sample.cpp +73 -0
- pyquantlib-0.9.0/src/models/all.cpp +73 -0
- pyquantlib-0.9.0/src/models/calibrationhelper.cpp +71 -0
- pyquantlib-0.9.0/src/models/equity/batesmodel.cpp +32 -0
- pyquantlib-0.9.0/src/models/equity/gjrgarchmodel.cpp +44 -0
- pyquantlib-0.9.0/src/models/equity/hestonmodel.cpp +45 -0
- pyquantlib-0.9.0/src/models/equity/hestonmodelhelper.cpp +91 -0
- pyquantlib-0.9.0/src/models/equity/hestonslvfdmmodel.cpp +165 -0
- pyquantlib-0.9.0/src/models/equity/hestonslvmcmodel.cpp +76 -0
- pyquantlib-0.9.0/src/models/marketmodels/browniangenerator.cpp +46 -0
- pyquantlib-0.9.0/src/models/marketmodels/browniangenerators/mtbrowniangenerator.cpp +38 -0
- pyquantlib-0.9.0/src/models/marketmodels/browniangenerators/sobolbrowniangenerator.cpp +84 -0
- pyquantlib-0.9.0/src/models/model.cpp +96 -0
- pyquantlib-0.9.0/src/models/parameter.cpp +50 -0
- pyquantlib-0.9.0/src/models/piecewisetimedependenthestonmodel.cpp +62 -0
- pyquantlib-0.9.0/src/models/shortrate/calibrationhelpers/caphelper.cpp +79 -0
- pyquantlib-0.9.0/src/models/shortrate/calibrationhelpers/swaptionhelper.cpp +216 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodel.cpp +40 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/blackkarasinski.cpp +44 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/coxingersollross.cpp +38 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/extendedcoxingersollross.cpp +53 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/gaussian1dmodel.cpp +113 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/gsr.cpp +142 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/hullwhite.cpp +61 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/markovfunctional.cpp +244 -0
- pyquantlib-0.9.0/src/models/shortrate/onefactormodels/vasicek.cpp +46 -0
- pyquantlib-0.9.0/src/models/shortrate/twofactormodel.cpp +29 -0
- pyquantlib-0.9.0/src/models/shortrate/twofactormodels/g2.cpp +72 -0
- pyquantlib-0.9.0/src/patterns/all.cpp +23 -0
- pyquantlib-0.9.0/src/patterns/lazyobject.cpp +43 -0
- pyquantlib-0.9.0/src/patterns/observable.cpp +66 -0
- pyquantlib-0.9.0/src/pricingengines/all.cpp +285 -0
- pyquantlib-0.9.0/src/pricingengines/asian/analytic_cont_geom_av_price.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/asian/analytic_discr_geom_av_price.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/asian/analytic_discr_geom_av_strike.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/asian/choiasianengine.cpp +35 -0
- pyquantlib-0.9.0/src/pricingengines/asian/continuousarithmeticasianlevyengine.cpp +43 -0
- pyquantlib-0.9.0/src/pricingengines/asian/fdblackscholesasianengine.cpp +38 -0
- pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_arith_av_price.cpp +72 -0
- pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_arith_av_price_heston.cpp +94 -0
- pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_arith_av_strike.cpp +68 -0
- pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_geom_av_price.cpp +68 -0
- pyquantlib-0.9.0/src/pricingengines/asian/mc_discr_geom_av_price_heston.cpp +90 -0
- pyquantlib-0.9.0/src/pricingengines/asian/turnbullwakemanasianengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/bacheliercalculator.cpp +86 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analyticbarrierengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analyticbinarybarrierengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analyticdoublebarrierbinaryengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analyticdoublebarrierengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analyticpartialtimebarrieroptionengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analyticsoftbarrierengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/analytictwoassetbarrierengine.cpp +46 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/binomialbarrierengine.cpp +95 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/fdblackscholesbarrierengine.cpp +39 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/fdblackscholesrebateengine.cpp +39 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/fdhestonbarrierengine.cpp +39 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/fdhestondoublebarrierengine.cpp +39 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/fdhestonrebateengine.cpp +39 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/mcbarrierengine.cpp +106 -0
- pyquantlib-0.9.0/src/pricingengines/barrier/mcdoublebarrierengine.cpp +100 -0
- pyquantlib-0.9.0/src/pricingengines/basket/bjerksundstenslandspreadengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/basket/choibasketengine.cpp +39 -0
- pyquantlib-0.9.0/src/pricingengines/basket/denglizhoubasketengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/basket/fd2dblackscholesvanillaengine.cpp +37 -0
- pyquantlib-0.9.0/src/pricingengines/basket/fdndimblackscholesvanillaengine.cpp +49 -0
- pyquantlib-0.9.0/src/pricingengines/basket/gaussiancopulaspreadengine.cpp +36 -0
- pyquantlib-0.9.0/src/pricingengines/basket/kirkengine.cpp +30 -0
- pyquantlib-0.9.0/src/pricingengines/basket/mcamericanbasketengine.cpp +87 -0
- pyquantlib-0.9.0/src/pricingengines/basket/mceuropeanbasketengine.cpp +97 -0
- pyquantlib-0.9.0/src/pricingengines/basket/operatorsplittingspreadengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/basket/pearsonspreadengine.cpp +36 -0
- pyquantlib-0.9.0/src/pricingengines/basket/singlefactorbsmbasketengine.cpp +34 -0
- pyquantlib-0.9.0/src/pricingengines/basket/spreadblackscholesvanillaengine.cpp +47 -0
- pyquantlib-0.9.0/src/pricingengines/basket/stulzengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/blackcalculator.cpp +86 -0
- pyquantlib-0.9.0/src/pricingengines/blackformula.cpp +150 -0
- pyquantlib-0.9.0/src/pricingengines/bond/binomialconvertibleengine.cpp +140 -0
- pyquantlib-0.9.0/src/pricingengines/bond/bondfunctions.cpp +178 -0
- pyquantlib-0.9.0/src/pricingengines/bond/discountingbondengine.cpp +47 -0
- pyquantlib-0.9.0/src/pricingengines/capfloor/analyticcapfloorengine.cpp +46 -0
- pyquantlib-0.9.0/src/pricingengines/capfloor/bacheliercapfloorengine.cpp +65 -0
- pyquantlib-0.9.0/src/pricingengines/capfloor/blackcapfloorengine.cpp +69 -0
- pyquantlib-0.9.0/src/pricingengines/capfloor/gaussian1dcapfloorengine.cpp +40 -0
- pyquantlib-0.9.0/src/pricingengines/capfloor/treecapfloorengine.cpp +57 -0
- pyquantlib-0.9.0/src/pricingengines/cliquet/analyticcliquetengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/credit/isdacdsengine.cpp +90 -0
- pyquantlib-0.9.0/src/pricingengines/credit/midpointcdsengine.cpp +55 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticamericanmargrabeengine.cpp +35 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticcomplexchooserengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticcompoundoptionengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticeuropeanmargrabeengine.cpp +35 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticholderextensibleoptionengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticsimplechooserengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analytictwoassetcorrelationengine.cpp +47 -0
- pyquantlib-0.9.0/src/pricingengines/exotic/analyticwriterextensibleoptionengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/forward/discountingfxforwardengine.cpp +59 -0
- pyquantlib-0.9.0/src/pricingengines/forward/forwardengine.cpp +45 -0
- pyquantlib-0.9.0/src/pricingengines/forward/mcforwardeuropeanbsengine.cpp +100 -0
- pyquantlib-0.9.0/src/pricingengines/forward/mcforwardeuropeanhestonengine.cpp +100 -0
- pyquantlib-0.9.0/src/pricingengines/forward/replicatingvarianceswapengine.cpp +36 -0
- pyquantlib-0.9.0/src/pricingengines/futures/discountingperpetualfuturesengine.cpp +99 -0
- pyquantlib-0.9.0/src/pricingengines/genericmodelengine.cpp +38 -0
- pyquantlib-0.9.0/src/pricingengines/inflation/inflationcapfloorengines.cpp +126 -0
- pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuousfixedlookback.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuousfloatinglookback.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuouspartialfixedlookback.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/lookback/analyticcontinuouspartialfloatinglookback.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/quanto/quantoengine.cpp +96 -0
- pyquantlib-0.9.0/src/pricingengines/swap/discountingconstnotionalcrosscurrencyswapengine.cpp +100 -0
- pyquantlib-0.9.0/src/pricingengines/swap/discountingswapengine.cpp +53 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/blackswaptionengine.cpp +118 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/fdg2swaptionengine.cpp +37 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/fdhullwhiteswaptionengine.cpp +36 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/g2swaptionengine.cpp +31 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1dfloatfloatswaptionengine.cpp +58 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1djamshidianswaptionengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1dnonstandardswaptionengine.cpp +56 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/gaussian1dswaptionengine.cpp +53 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/jamshidianswaptionengine.cpp +45 -0
- pyquantlib-0.9.0/src/pricingengines/swaption/treeswaptionengine.cpp +61 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticbsmhullwhiteengine.cpp +37 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticcevengine.cpp +60 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticdigitalamericanengine.cpp +41 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticdividendeuropeanengine.cpp +36 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticeuropeanengine.cpp +44 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticeuropeanvasicekengine.cpp +34 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticgjrgarchengine.cpp +30 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analytich1hwengine.cpp +49 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analytichestonengine.cpp +111 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analytichestonhullwhiteengine.cpp +45 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticpdfhestonengine.cpp +40 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/analyticptdhestonengine.cpp +51 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/baroneadesiwhaleyengine.cpp +40 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/batesengine.cpp +35 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/binomialengine.cpp +84 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/bjerksundstenslandengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/cashdividendeuropeanengine.cpp +46 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/coshestonengine.cpp +50 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/exponentialfittinghestonengine.cpp +44 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdbatesvanillaengine.cpp +53 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdblackscholesshoutengine.cpp +51 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdblackscholesvanillaengine.cpp +62 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdcevvanillaengine.cpp +68 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdhestonhullwhitevanillaengine.cpp +63 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdhestonvanillaengine.cpp +99 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdornsteinuhlenbeckvanillaengine.cpp +57 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdsabrvanillaengine.cpp +74 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/fdsimplebsswingengine.cpp +37 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/hestonexpansionengine.cpp +41 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/integralengine.cpp +29 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/juquadraticengine.cpp +32 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/mcamericanengine.cpp +129 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/mcdigitalengine.cpp +100 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/mceuropeanengine.cpp +113 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/mceuropeangjrgarchengine.cpp +97 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/mceuropeanhestonengine.cpp +107 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/qdfpamericanengine.cpp +87 -0
- pyquantlib-0.9.0/src/pricingengines/vanilla/qdplusamericanengine.cpp +54 -0
- pyquantlib-0.9.0/src/processes/all.cpp +59 -0
- pyquantlib-0.9.0/src/processes/batesprocess.cpp +82 -0
- pyquantlib-0.9.0/src/processes/blackscholesprocess.cpp +241 -0
- pyquantlib-0.9.0/src/processes/eulerdiscretization.cpp +28 -0
- pyquantlib-0.9.0/src/processes/extendedornsteinuhlenbeckprocess.cpp +54 -0
- pyquantlib-0.9.0/src/processes/forwardmeasureprocess.cpp +48 -0
- pyquantlib-0.9.0/src/processes/g2process.cpp +49 -0
- pyquantlib-0.9.0/src/processes/geometricbrownianmotionprocess.cpp +34 -0
- pyquantlib-0.9.0/src/processes/gjrgarchprocess.cpp +96 -0
- pyquantlib-0.9.0/src/processes/hestonprocess.cpp +93 -0
- pyquantlib-0.9.0/src/processes/hestonslvprocess.cpp +61 -0
- pyquantlib-0.9.0/src/processes/hullwhiteprocess.cpp +84 -0
- pyquantlib-0.9.0/src/processes/hybridhestonhullwhiteprocess.cpp +53 -0
- pyquantlib-0.9.0/src/processes/merton76process.cpp +87 -0
- pyquantlib-0.9.0/src/processes/ornsteinuhlenbeckprocess.cpp +42 -0
- pyquantlib-0.9.0/src/processes/squarerootprocess.cpp +41 -0
- pyquantlib-0.9.0/src/processes/stochasticprocessarray.cpp +77 -0
- pyquantlib-0.9.0/src/quotes/all.cpp +24 -0
- pyquantlib-0.9.0/src/quotes/compositequote.cpp +60 -0
- pyquantlib-0.9.0/src/quotes/deltavolquote.cpp +73 -0
- pyquantlib-0.9.0/src/quotes/derivedquote.cpp +59 -0
- pyquantlib-0.9.0/src/quotes/multicompositequote.cpp +69 -0
- pyquantlib-0.9.0/src/quotes/simplequote.cpp +39 -0
- pyquantlib-0.9.0/src/submodules.cpp +20 -0
- pyquantlib-0.9.0/src/termstructures/all.cpp +231 -0
- pyquantlib-0.9.0/src/termstructures/credit/defaultprobabilityhelpers.cpp +228 -0
- pyquantlib-0.9.0/src/termstructures/credit/flathazardrate.cpp +67 -0
- pyquantlib-0.9.0/src/termstructures/credit/piecewisedefaultcurve.cpp +92 -0
- pyquantlib-0.9.0/src/termstructures/defaulttermstructure.cpp +71 -0
- pyquantlib-0.9.0/src/termstructures/globalbootstrap.cpp +153 -0
- pyquantlib-0.9.0/src/termstructures/inflation/inflationhelper.cpp +78 -0
- pyquantlib-0.9.0/src/termstructures/inflation/inflationhelpers.cpp +184 -0
- pyquantlib-0.9.0/src/termstructures/inflation/interpolatedyoyinflationcurve.cpp +63 -0
- pyquantlib-0.9.0/src/termstructures/inflation/interpolatedzeroinflationcurve.cpp +63 -0
- pyquantlib-0.9.0/src/termstructures/inflation/piecewiseyoyinflationcurve.cpp +69 -0
- pyquantlib-0.9.0/src/termstructures/inflation/piecewisezeroinflationcurve.cpp +67 -0
- pyquantlib-0.9.0/src/termstructures/inflation/seasonality.cpp +83 -0
- pyquantlib-0.9.0/src/termstructures/inflationtermstructure.cpp +99 -0
- pyquantlib-0.9.0/src/termstructures/multicurve.cpp +57 -0
- pyquantlib-0.9.0/src/termstructures/volatility/capfloor/capfloortermvolatilitystructure.cpp +49 -0
- pyquantlib-0.9.0/src/termstructures/volatility/capfloor/capfloortermvolsurface.cpp +67 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/andreasenhugelocalvoladapter.cpp +32 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityadapter.cpp +33 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityinterpl.cpp +91 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackconstantvol.cpp +75 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvariancesurface.cpp +83 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvolsurfacedelta.cpp +87 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvoltermstructure.cpp +147 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/blackvoltimeextrapolation.cpp +33 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/fixedlocalvolsurface.cpp +103 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/localconstantvol.cpp +71 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/localvolsurface.cpp +76 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/localvoltermstructure.cpp +74 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/noexceptlocalvolsurface.cpp +86 -0
- pyquantlib-0.9.0/src/termstructures/volatility/equityfx/piecewiseblackvariancesurface.cpp +62 -0
- pyquantlib-0.9.0/src/termstructures/volatility/flatsmilesection.cpp +60 -0
- pyquantlib-0.9.0/src/termstructures/volatility/hestonblackvolsurface.cpp +39 -0
- pyquantlib-0.9.0/src/termstructures/volatility/inflation/yoyinflationoptionletvolatilitystructure.cpp +149 -0
- pyquantlib-0.9.0/src/termstructures/volatility/kahalesmilesection.cpp +62 -0
- pyquantlib-0.9.0/src/termstructures/volatility/noarbsabr.cpp +55 -0
- pyquantlib-0.9.0/src/termstructures/volatility/noarbsabrinterpolatedsmilesection.cpp +78 -0
- pyquantlib-0.9.0/src/termstructures/volatility/noarbsabrsmilesection.cpp +51 -0
- pyquantlib-0.9.0/src/termstructures/volatility/optionlet/constantoptionletvol.cpp +88 -0
- pyquantlib-0.9.0/src/termstructures/volatility/optionlet/optionletstripper.cpp +45 -0
- pyquantlib-0.9.0/src/termstructures/volatility/optionlet/optionletstripper1.cpp +103 -0
- pyquantlib-0.9.0/src/termstructures/volatility/optionlet/optionletvolatilitystructure.cpp +124 -0
- pyquantlib-0.9.0/src/termstructures/volatility/optionlet/strippedoptionletadapter.cpp +41 -0
- pyquantlib-0.9.0/src/termstructures/volatility/optionlet/strippedoptionletbase.cpp +61 -0
- pyquantlib-0.9.0/src/termstructures/volatility/sabrinterpolatedsmilesection.cpp +67 -0
- pyquantlib-0.9.0/src/termstructures/volatility/sabrsmilesection.cpp +68 -0
- pyquantlib-0.9.0/src/termstructures/volatility/smilesection.cpp +104 -0
- pyquantlib-0.9.0/src/termstructures/volatility/spreadedswaptionvol.cpp +43 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/sabrswaptionvolcube.cpp +102 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionconstantvol.cpp +90 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvolcube.cpp +54 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvoldiscrete.cpp +42 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvolmatrix.cpp +107 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/swaptionvolstructure.cpp +161 -0
- pyquantlib-0.9.0/src/termstructures/volatility/swaption/zabrswaptionvolcube.cpp +102 -0
- pyquantlib-0.9.0/src/termstructures/volatility/volatilitytype.cpp +29 -0
- pyquantlib-0.9.0/src/termstructures/voltermstructure.cpp +51 -0
- pyquantlib-0.9.0/src/termstructures/yield/bondhelpers.cpp +201 -0
- pyquantlib-0.9.0/src/termstructures/yield/compositezeroyieldstructure.cpp +56 -0
- pyquantlib-0.9.0/src/termstructures/yield/discountcurve.cpp +61 -0
- pyquantlib-0.9.0/src/termstructures/yield/fittedbonddiscountcurve.cpp +108 -0
- pyquantlib-0.9.0/src/termstructures/yield/flatforward.cpp +93 -0
- pyquantlib-0.9.0/src/termstructures/yield/forwardcurve.cpp +61 -0
- pyquantlib-0.9.0/src/termstructures/yield/forwardspreadedtermstructure.cpp +42 -0
- pyquantlib-0.9.0/src/termstructures/yield/impliedtermstructure.cpp +40 -0
- pyquantlib-0.9.0/src/termstructures/yield/multipleresetsswaphelper.cpp +112 -0
- pyquantlib-0.9.0/src/termstructures/yield/nonlinearfittingmethods.cpp +156 -0
- pyquantlib-0.9.0/src/termstructures/yield/oisratehelper.cpp +272 -0
- pyquantlib-0.9.0/src/termstructures/yield/overnightindexfutureratehelper.cpp +126 -0
- pyquantlib-0.9.0/src/termstructures/yield/piecewiseyieldcurve.cpp +119 -0
- pyquantlib-0.9.0/src/termstructures/yield/quantotermstructure.cpp +72 -0
- pyquantlib-0.9.0/src/termstructures/yield/ratehelpers.cpp +346 -0
- pyquantlib-0.9.0/src/termstructures/yield/ultimateforwardtermstructure.cpp +57 -0
- pyquantlib-0.9.0/src/termstructures/yield/zerocurve.cpp +70 -0
- pyquantlib-0.9.0/src/termstructures/yield/zerospreadedtermstructure.cpp +50 -0
- pyquantlib-0.9.0/src/termstructures/yieldtermstructure.cpp +111 -0
- pyquantlib-0.9.0/src/time/all.cpp +38 -0
- pyquantlib-0.9.0/src/time/businessdayconvention.cpp +44 -0
- pyquantlib-0.9.0/src/time/calendar.cpp +109 -0
- pyquantlib-0.9.0/src/time/calendars/calendars.cpp +805 -0
- pyquantlib-0.9.0/src/time/calendars/islamicholidays.cpp +32 -0
- pyquantlib-0.9.0/src/time/date.cpp +204 -0
- pyquantlib-0.9.0/src/time/dategenerationrule.cpp +54 -0
- pyquantlib-0.9.0/src/time/daycounter.cpp +62 -0
- pyquantlib-0.9.0/src/time/daycounters/daycounters.cpp +123 -0
- pyquantlib-0.9.0/src/time/frequency.cpp +40 -0
- pyquantlib-0.9.0/src/time/period.cpp +108 -0
- pyquantlib-0.9.0/src/time/schedule.cpp +155 -0
- pyquantlib-0.9.0/src/time/timeunit.cpp +36 -0
- pyquantlib-0.9.0/src/time/weekday.cpp +41 -0
- pyquantlib-0.9.0/src/utilities/all.cpp +21 -0
- pyquantlib-0.9.0/src/utilities/null.cpp +54 -0
- pyquantlib-0.9.0/src/utilities/observablevalue.cpp +41 -0
- pyquantlib-0.9.0/tests/test_cashflows.py +2332 -0
- pyquantlib-0.9.0/tests/test_core.py +476 -0
- pyquantlib-0.9.0/tests/test_currencies.py +316 -0
- pyquantlib-0.9.0/tests/test_indexes.py +1094 -0
- pyquantlib-0.9.0/tests/test_instruments.py +4531 -0
- pyquantlib-0.9.0/tests/test_math_interpolations.py +776 -0
- pyquantlib-0.9.0/tests/test_math_optimization.py +179 -0
- pyquantlib-0.9.0/tests/test_math_randomnumbers.py +532 -0
- pyquantlib-0.9.0/tests/test_methods.py +2978 -0
- pyquantlib-0.9.0/tests/test_pricingengines_basket.py +858 -0
- pyquantlib-0.9.0/tests/test_pricingengines_bond.py +341 -0
- pyquantlib-0.9.0/tests/test_pricingengines_exotic.py +237 -0
- pyquantlib-0.9.0/tests/test_pricingengines_futures.py +68 -0
- pyquantlib-0.9.0/tests/test_pricingengines_swap.py +111 -0
- pyquantlib-0.9.0/tests/test_pricingengines_vanilla.py +1934 -0
- pyquantlib-0.9.0/tests/test_quotes.py +412 -0
- pyquantlib-0.9.0/tests/test_termstructures_volatility.py +2870 -0
- pyquantlib-0.9.0/tests/test_termstructures_yield.py +1939 -0
- pyquantlib-0.9.0/tests/test_time.py +1303 -0
- pyquantlib-0.7.0/.github/ISSUE_TEMPLATE/bug_report.md +0 -35
- pyquantlib-0.7.0/.github/scripts/build-quantlib-windows.ps1 +0 -51
- pyquantlib-0.7.0/.github/workflows/linux.yml +0 -115
- pyquantlib-0.7.0/.github/workflows/macos.yml +0 -102
- pyquantlib-0.7.0/.github/workflows/wheels.yml +0 -208
- pyquantlib-0.7.0/.github/workflows/windows.yml +0 -126
- pyquantlib-0.7.0/.gitignore +0 -130
- pyquantlib-0.7.0/CONTRIBUTING.md +0 -509
- pyquantlib-0.7.0/PKG-INFO +0 -248
- pyquantlib-0.7.0/README.md +0 -165
- pyquantlib-0.7.0/docs/_static/custom.css +0 -165
- pyquantlib-0.7.0/docs/_static/favicon.svg +0 -4
- pyquantlib-0.7.0/docs/_static/logo.svg +0 -15
- pyquantlib-0.7.0/docs/api/cashflows.md +0 -647
- pyquantlib-0.7.0/docs/api/core.md +0 -164
- pyquantlib-0.7.0/docs/api/currencies.md +0 -87
- pyquantlib-0.7.0/docs/api/experimental.md +0 -144
- pyquantlib-0.7.0/docs/api/extensions.md +0 -101
- pyquantlib-0.7.0/docs/api/indexes.md +0 -432
- pyquantlib-0.7.0/docs/api/instruments.md +0 -1079
- pyquantlib-0.7.0/docs/api/math.md +0 -568
- pyquantlib-0.7.0/docs/api/methods.md +0 -1127
- pyquantlib-0.7.0/docs/api/models.md +0 -438
- pyquantlib-0.7.0/docs/api/pricingengines.md +0 -1344
- pyquantlib-0.7.0/docs/api/processes.md +0 -248
- pyquantlib-0.7.0/docs/api/quotes.md +0 -62
- pyquantlib-0.7.0/docs/api/termstructures.md +0 -1193
- pyquantlib-0.7.0/docs/api/time.md +0 -168
- pyquantlib-0.7.0/docs/architecture.md +0 -257
- pyquantlib-0.7.0/docs/building.md +0 -293
- pyquantlib-0.7.0/docs/changelog.md +0 -648
- pyquantlib-0.7.0/docs/conf.py +0 -168
- pyquantlib-0.7.0/docs/contributing.md +0 -296
- pyquantlib-0.7.0/docs/design/api-design.md +0 -46
- pyquantlib-0.7.0/docs/design/bridge-defaults.md +0 -173
- pyquantlib-0.7.0/docs/design/builder-pattern.md +0 -163
- pyquantlib-0.7.0/docs/design/cross-tu-holders.md +0 -180
- pyquantlib-0.7.0/docs/design/diamond-inheritance.md +0 -320
- pyquantlib-0.7.0/docs/design/enum-singletons.md +0 -341
- pyquantlib-0.7.0/docs/design/hidden-handles.md +0 -123
- pyquantlib-0.7.0/docs/design/index.md +0 -24
- pyquantlib-0.7.0/docs/design/interpolation.md +0 -231
- pyquantlib-0.7.0/docs/design/protected-members.md +0 -280
- pyquantlib-0.7.0/docs/design/python-subclassing.md +0 -275
- pyquantlib-0.7.0/docs/design/reference-members.md +0 -180
- pyquantlib-0.7.0/docs/design/settings-singleton.md +0 -174
- pyquantlib-0.7.0/docs/examples/index.md +0 -22
- pyquantlib-0.7.0/docs/extending.md +0 -240
- pyquantlib-0.7.0/docs/index.md +0 -174
- pyquantlib-0.7.0/docs/installation.md +0 -62
- pyquantlib-0.7.0/docs/internals.md +0 -330
- pyquantlib-0.7.0/docs/quickstart.md +0 -219
- pyquantlib-0.7.0/docs/requirements.txt +0 -8
- pyquantlib-0.7.0/examples/bermudan_swaption.ipynb +0 -839
- pyquantlib-0.7.0/examples/bonds.ipynb +0 -377
- pyquantlib-0.7.0/examples/cds.ipynb +0 -234
- pyquantlib-0.7.0/examples/equity_option.ipynb +0 -501
- pyquantlib-0.7.0/examples/hello_pyquantlib.ipynb +0 -295
- pyquantlib-0.7.0/examples/inflation_derivatives.ipynb +0 -824
- pyquantlib-0.7.0/examples/multicurve_bootstrapping.ipynb +0 -203
- pyquantlib-0.7.0/examples/numpy_interoperability.ipynb +0 -499
- pyquantlib-0.7.0/examples/replication.ipynb +0 -359
- pyquantlib-0.7.0/examples/spread_option.ipynb +0 -412
- pyquantlib-0.7.0/examples/svi_smile.ipynb +0 -680
- pyquantlib-0.7.0/include/pyquantlib/binding_manager.h +0 -220
- pyquantlib-0.7.0/include/pyquantlib/interpolation_helper.h +0 -211
- pyquantlib-0.7.0/include/pyquantlib/null_utils.h +0 -61
- pyquantlib-0.7.0/include/pyquantlib/pyquantlib.h +0 -674
- pyquantlib-0.7.0/include/pyquantlib/shared_ptr_from_python.h +0 -49
- pyquantlib-0.7.0/include/pyquantlib/trampolines.h +0 -1263
- pyquantlib-0.7.0/include/pyquantlib/version.h +0 -16
- pyquantlib-0.7.0/licenseheader.txt +0 -11
- pyquantlib-0.7.0/pyquantlib/__init__.pyi +0 -1096
- pyquantlib-0.7.0/pyquantlib/_pyquantlib/__init__.pyi +0 -24459
- pyquantlib-0.7.0/pyquantlib/_pyquantlib/base.pyi +0 -2316
- pyquantlib-0.7.0/pyquantlib/builders.py +0 -408
- pyquantlib-0.7.0/pyquantlib/version.py +0 -1
- pyquantlib-0.7.0/pyquantlib/version.pyi +0 -3
- pyquantlib-0.7.0/src/cashflows/all.cpp +0 -83
- pyquantlib-0.7.0/src/cashflows/averagebmacoupon.cpp +0 -112
- pyquantlib-0.7.0/src/cashflows/capflooredcoupon.cpp +0 -129
- pyquantlib-0.7.0/src/cashflows/capflooredinflationcoupon.cpp +0 -87
- pyquantlib-0.7.0/src/cashflows/cmscoupon.cpp +0 -153
- pyquantlib-0.7.0/src/cashflows/conundrumpricer.cpp +0 -124
- pyquantlib-0.7.0/src/cashflows/coupon.cpp +0 -50
- pyquantlib-0.7.0/src/cashflows/couponpricer.cpp +0 -73
- pyquantlib-0.7.0/src/cashflows/digitalcmscoupon.cpp +0 -205
- pyquantlib-0.7.0/src/cashflows/digitalcoupon.cpp +0 -95
- pyquantlib-0.7.0/src/cashflows/digitaliborcoupon.cpp +0 -205
- pyquantlib-0.7.0/src/cashflows/dividend.cpp +0 -71
- pyquantlib-0.7.0/src/cashflows/duration.cpp +0 -27
- pyquantlib-0.7.0/src/cashflows/fixedratecoupon.cpp +0 -124
- pyquantlib-0.7.0/src/cashflows/floatingratecoupon.cpp +0 -75
- pyquantlib-0.7.0/src/cashflows/iborcoupon.cpp +0 -185
- pyquantlib-0.7.0/src/cashflows/inflationcoupon.cpp +0 -56
- pyquantlib-0.7.0/src/cashflows/inflationcouponpricer.cpp +0 -121
- pyquantlib-0.7.0/src/cashflows/lineartsrpricer.cpp +0 -137
- pyquantlib-0.7.0/src/cashflows/overnightindexedcoupon.cpp +0 -167
- pyquantlib-0.7.0/src/cashflows/overnightindexedcouponpricer.cpp +0 -73
- pyquantlib-0.7.0/src/cashflows/rateaveraging.cpp +0 -30
- pyquantlib-0.7.0/src/cashflows/replication.cpp +0 -42
- pyquantlib-0.7.0/src/cashflows/simplecashflow.cpp +0 -39
- pyquantlib-0.7.0/src/cashflows/yoyinflationcoupon.cpp +0 -162
- pyquantlib-0.7.0/src/cashflows/zeroinflationcashflow.cpp +0 -60
- pyquantlib-0.7.0/src/core/all.cpp +0 -46
- pyquantlib-0.7.0/src/core/cashflow.cpp +0 -39
- pyquantlib-0.7.0/src/core/cdspricingmodel.cpp +0 -26
- pyquantlib-0.7.0/src/core/compounding.cpp +0 -31
- pyquantlib-0.7.0/src/core/constants.cpp +0 -27
- pyquantlib-0.7.0/src/core/currency.cpp +0 -47
- pyquantlib-0.7.0/src/core/default.cpp +0 -26
- pyquantlib-0.7.0/src/core/exchangerate.cpp +0 -50
- pyquantlib-0.7.0/src/core/exercise.cpp +0 -49
- pyquantlib-0.7.0/src/core/forward.cpp +0 -72
- pyquantlib-0.7.0/src/core/index.cpp +0 -41
- pyquantlib-0.7.0/src/core/instrument.cpp +0 -41
- pyquantlib-0.7.0/src/core/interestrate.cpp +0 -125
- pyquantlib-0.7.0/src/core/money.cpp +0 -105
- pyquantlib-0.7.0/src/core/option.cpp +0 -67
- pyquantlib-0.7.0/src/core/payoff.cpp +0 -37
- pyquantlib-0.7.0/src/core/position.cpp +0 -26
- pyquantlib-0.7.0/src/core/pricingengine.cpp +0 -51
- pyquantlib-0.7.0/src/core/quote.cpp +0 -38
- pyquantlib-0.7.0/src/core/settings.cpp +0 -59
- pyquantlib-0.7.0/src/core/stochasticprocess.cpp +0 -79
- pyquantlib-0.7.0/src/core/termstructure.cpp +0 -54
- pyquantlib-0.7.0/src/core/timegrid.cpp +0 -72
- pyquantlib-0.7.0/src/currencies/all.cpp +0 -20
- pyquantlib-0.7.0/src/currencies/currencies.cpp +0 -787
- pyquantlib-0.7.0/src/currencies/exchangeratemanager.cpp +0 -45
- pyquantlib-0.7.0/src/experimental/all.cpp +0 -48
- pyquantlib-0.7.0/src/experimental/callablebonds/blackcallablebondengine.cpp +0 -80
- pyquantlib-0.7.0/src/experimental/callablebonds/callablebond.cpp +0 -133
- pyquantlib-0.7.0/src/experimental/callablebonds/callablebondconstantvol.cpp +0 -75
- pyquantlib-0.7.0/src/experimental/callablebonds/callablebondvolstructure.cpp +0 -66
- pyquantlib-0.7.0/src/experimental/callablebonds/treecallablebondengine.cpp +0 -88
- pyquantlib-0.7.0/src/experimental/credit/blackcdsoptionengine.cpp +0 -58
- pyquantlib-0.7.0/src/experimental/credit/cdsoption.cpp +0 -78
- pyquantlib-0.7.0/src/experimental/exoticoptions/twoassetcorrelationoption.cpp +0 -33
- pyquantlib-0.7.0/src/experimental/variancegamma/analyticvariancegammaengine.cpp +0 -30
- pyquantlib-0.7.0/src/experimental/variancegamma/fftvariancegammaengine.cpp +0 -30
- pyquantlib-0.7.0/src/experimental/variancegamma/variancegammamodel.cpp +0 -37
- pyquantlib-0.7.0/src/experimental/variancegamma/variancegammaprocess.cpp +0 -71
- pyquantlib-0.7.0/src/experimental/volatility/svismilesection.cpp +0 -73
- pyquantlib-0.7.0/src/indexes/all.cpp +0 -50
- pyquantlib-0.7.0/src/indexes/bmaindex.cpp +0 -50
- pyquantlib-0.7.0/src/indexes/equityindex.cpp +0 -86
- pyquantlib-0.7.0/src/indexes/ibor/eonia.cpp +0 -39
- pyquantlib-0.7.0/src/indexes/ibor/estr.cpp +0 -39
- pyquantlib-0.7.0/src/indexes/ibor/euribor.cpp +0 -116
- pyquantlib-0.7.0/src/indexes/ibor/sofr.cpp +0 -39
- pyquantlib-0.7.0/src/indexes/ibor/sonia.cpp +0 -39
- pyquantlib-0.7.0/src/indexes/iborindex.cpp +0 -118
- pyquantlib-0.7.0/src/indexes/inflation/aucpi.cpp +0 -70
- pyquantlib-0.7.0/src/indexes/inflation/euhicp.cpp +0 -82
- pyquantlib-0.7.0/src/indexes/inflation/frhicp.cpp +0 -52
- pyquantlib-0.7.0/src/indexes/inflation/ukrpi.cpp +0 -52
- pyquantlib-0.7.0/src/indexes/inflation/uscpi.cpp +0 -52
- pyquantlib-0.7.0/src/indexes/inflation/zacpi.cpp +0 -52
- pyquantlib-0.7.0/src/indexes/inflationindex.cpp +0 -193
- pyquantlib-0.7.0/src/indexes/interestrateindex.cpp +0 -64
- pyquantlib-0.7.0/src/indexes/region.cpp +0 -68
- pyquantlib-0.7.0/src/indexes/swap/swapindexes.cpp +0 -105
- pyquantlib-0.7.0/src/indexes/swapindex.cpp +0 -111
- pyquantlib-0.7.0/src/indexes/swapspreadindex.cpp +0 -45
- pyquantlib-0.7.0/src/instruments/all.cpp +0 -151
- pyquantlib-0.7.0/src/instruments/asianoption.cpp +0 -71
- pyquantlib-0.7.0/src/instruments/assetswap.cpp +0 -72
- pyquantlib-0.7.0/src/instruments/averagetype.cpp +0 -25
- pyquantlib-0.7.0/src/instruments/barrieroption.cpp +0 -49
- pyquantlib-0.7.0/src/instruments/barriertype.cpp +0 -27
- pyquantlib-0.7.0/src/instruments/basketoption.cpp +0 -106
- pyquantlib-0.7.0/src/instruments/bond.cpp +0 -178
- pyquantlib-0.7.0/src/instruments/bondforward.cpp +0 -77
- pyquantlib-0.7.0/src/instruments/bonds/amortizingcmsratebond.cpp +0 -67
- pyquantlib-0.7.0/src/instruments/bonds/amortizingfixedratebond.cpp +0 -79
- pyquantlib-0.7.0/src/instruments/bonds/amortizingfloatingratebond.cpp +0 -84
- pyquantlib-0.7.0/src/instruments/bonds/cmsratebond.cpp +0 -67
- pyquantlib-0.7.0/src/instruments/bonds/convertiblebonds.cpp +0 -158
- pyquantlib-0.7.0/src/instruments/bonds/cpibond.cpp +0 -89
- pyquantlib-0.7.0/src/instruments/bonds/fixedratebond.cpp +0 -74
- pyquantlib-0.7.0/src/instruments/bonds/floatingratebond.cpp +0 -78
- pyquantlib-0.7.0/src/instruments/bonds/zerocouponbond.cpp +0 -35
- pyquantlib-0.7.0/src/instruments/callabilityschedule.cpp +0 -45
- pyquantlib-0.7.0/src/instruments/capfloor.cpp +0 -108
- pyquantlib-0.7.0/src/instruments/claim.cpp +0 -50
- pyquantlib-0.7.0/src/instruments/cliquetoption.cpp +0 -35
- pyquantlib-0.7.0/src/instruments/complexchooseroption.cpp +0 -35
- pyquantlib-0.7.0/src/instruments/compositeinstrument.cpp +0 -37
- pyquantlib-0.7.0/src/instruments/compoundoption.cpp +0 -36
- pyquantlib-0.7.0/src/instruments/creditdefaultswap.cpp +0 -161
- pyquantlib-0.7.0/src/instruments/doublebarrieroption.cpp +0 -47
- pyquantlib-0.7.0/src/instruments/doublebarriertype.cpp +0 -27
- pyquantlib-0.7.0/src/instruments/equitytotalreturnswap.cpp +0 -122
- pyquantlib-0.7.0/src/instruments/fixedvsfloatingswap.cpp +0 -111
- pyquantlib-0.7.0/src/instruments/floatfloatswap.cpp +0 -201
- pyquantlib-0.7.0/src/instruments/floatfloatswaption.cpp +0 -47
- pyquantlib-0.7.0/src/instruments/forwardrateagreement.cpp +0 -86
- pyquantlib-0.7.0/src/instruments/forwardvanillaoption.cpp +0 -35
- pyquantlib-0.7.0/src/instruments/holderextensibleoption.cpp +0 -37
- pyquantlib-0.7.0/src/instruments/inflationcapfloor.cpp +0 -119
- pyquantlib-0.7.0/src/instruments/lookbackoption.cpp +0 -80
- pyquantlib-0.7.0/src/instruments/makecapfloor.cpp +0 -99
- pyquantlib-0.7.0/src/instruments/makeois.cpp +0 -208
- pyquantlib-0.7.0/src/instruments/makeswaption.cpp +0 -88
- pyquantlib-0.7.0/src/instruments/makevanillaswap.cpp +0 -192
- pyquantlib-0.7.0/src/instruments/makeyoyinflationcapfloor.cpp +0 -116
- pyquantlib-0.7.0/src/instruments/margrabeoption.cpp +0 -39
- pyquantlib-0.7.0/src/instruments/multiassetoption.cpp +0 -52
- pyquantlib-0.7.0/src/instruments/nonstandardswap.cpp +0 -159
- pyquantlib-0.7.0/src/instruments/nonstandardswaption.cpp +0 -52
- pyquantlib-0.7.0/src/instruments/oneassetoption.cpp +0 -81
- pyquantlib-0.7.0/src/instruments/overnightindexedswap.cpp +0 -93
- pyquantlib-0.7.0/src/instruments/partialtimebarrieroption.cpp +0 -49
- pyquantlib-0.7.0/src/instruments/payoffs.cpp +0 -103
- pyquantlib-0.7.0/src/instruments/quantoforwardvanillaoption.cpp +0 -41
- pyquantlib-0.7.0/src/instruments/quantovanillaoption.cpp +0 -38
- pyquantlib-0.7.0/src/instruments/simplechooseroption.cpp +0 -31
- pyquantlib-0.7.0/src/instruments/softbarrieroption.cpp +0 -46
- pyquantlib-0.7.0/src/instruments/swap.cpp +0 -117
- pyquantlib-0.7.0/src/instruments/swaption.cpp +0 -109
- pyquantlib-0.7.0/src/instruments/twoassetbarrieroption.cpp +0 -37
- pyquantlib-0.7.0/src/instruments/vanillaoption.cpp +0 -31
- pyquantlib-0.7.0/src/instruments/vanillaswap.cpp +0 -44
- pyquantlib-0.7.0/src/instruments/varianceswap.cpp +0 -44
- pyquantlib-0.7.0/src/instruments/writerextensibleoption.cpp +0 -40
- pyquantlib-0.7.0/src/instruments/yearonyearinflationswap.cpp +0 -107
- pyquantlib-0.7.0/src/instruments/zerocouponinflationswap.cpp +0 -117
- pyquantlib-0.7.0/src/instruments/zerocouponswap.cpp +0 -77
- pyquantlib-0.7.0/src/main.cpp +0 -58
- pyquantlib-0.7.0/src/math/all.cpp +0 -110
- pyquantlib-0.7.0/src/math/array.cpp +0 -217
- pyquantlib-0.7.0/src/math/distributions/bivariatenormaldistribution.cpp +0 -31
- pyquantlib-0.7.0/src/math/distributions/normaldistribution.cpp +0 -63
- pyquantlib-0.7.0/src/math/integrals/expsinhintegral.cpp +0 -40
- pyquantlib-0.7.0/src/math/integrals/gaussianquadratures.cpp +0 -150
- pyquantlib-0.7.0/src/math/integrals/gausslobattointegral.cpp +0 -41
- pyquantlib-0.7.0/src/math/integrals/integral.cpp +0 -45
- pyquantlib-0.7.0/src/math/integrals/kronrodintegral.cpp +0 -48
- pyquantlib-0.7.0/src/math/integrals/segmentintegral.cpp +0 -28
- pyquantlib-0.7.0/src/math/integrals/simpsonintegral.cpp +0 -29
- pyquantlib-0.7.0/src/math/integrals/tanhsinhintegral.cpp +0 -33
- pyquantlib-0.7.0/src/math/integrals/trapezoidintegral.cpp +0 -37
- pyquantlib-0.7.0/src/math/interpolations/backwardflatinterpolation.cpp +0 -26
- pyquantlib-0.7.0/src/math/interpolations/bicubicsplineinterpolation.cpp +0 -40
- pyquantlib-0.7.0/src/math/interpolations/bilinearinterpolation.cpp +0 -25
- pyquantlib-0.7.0/src/math/interpolations/chebyshevinterpolation.cpp +0 -57
- pyquantlib-0.7.0/src/math/interpolations/cubicinterpolation.cpp +0 -78
- pyquantlib-0.7.0/src/math/interpolations/extrapolation.cpp +0 -32
- pyquantlib-0.7.0/src/math/interpolations/forwardflatinterpolation.cpp +0 -25
- pyquantlib-0.7.0/src/math/interpolations/interpolation.cpp +0 -52
- pyquantlib-0.7.0/src/math/interpolations/interpolation2d.cpp +0 -51
- pyquantlib-0.7.0/src/math/interpolations/lagrangeinterpolation.cpp +0 -35
- pyquantlib-0.7.0/src/math/interpolations/linearinterpolation.cpp +0 -25
- pyquantlib-0.7.0/src/math/interpolations/loglinearinterpolation.cpp +0 -25
- pyquantlib-0.7.0/src/math/matrix.cpp +0 -228
- pyquantlib-0.7.0/src/math/matrixutilities/svd.cpp +0 -47
- pyquantlib-0.7.0/src/math/matrixutilities/symmetricschurdecomposition.cpp +0 -34
- pyquantlib-0.7.0/src/math/ode/adaptiverungekutta.cpp +0 -53
- pyquantlib-0.7.0/src/math/optimization/bfgs.cpp +0 -27
- pyquantlib-0.7.0/src/math/optimization/conjugategradient.cpp +0 -28
- pyquantlib-0.7.0/src/math/optimization/constraint.cpp +0 -49
- pyquantlib-0.7.0/src/math/optimization/costfunction.cpp +0 -33
- pyquantlib-0.7.0/src/math/optimization/differentialevolution.cpp +0 -119
- pyquantlib-0.7.0/src/math/optimization/endcriteria.cpp +0 -101
- pyquantlib-0.7.0/src/math/optimization/levenbergmarquardt.cpp +0 -30
- pyquantlib-0.7.0/src/math/optimization/method.cpp +0 -30
- pyquantlib-0.7.0/src/math/optimization/problem.cpp +0 -48
- pyquantlib-0.7.0/src/math/optimization/simplex.cpp +0 -30
- pyquantlib-0.7.0/src/math/optimization/steepestdescent.cpp +0 -28
- pyquantlib-0.7.0/src/math/randomnumbers/boxmullergaussianrng.cpp +0 -37
- pyquantlib-0.7.0/src/math/randomnumbers/burley2020sobolrsg.cpp +0 -45
- pyquantlib-0.7.0/src/math/randomnumbers/haltonrsg.cpp +0 -39
- pyquantlib-0.7.0/src/math/randomnumbers/inversecumulativerng.cpp +0 -40
- pyquantlib-0.7.0/src/math/randomnumbers/inversecumulativersg.cpp +0 -78
- pyquantlib-0.7.0/src/math/randomnumbers/mt19937uniformrng.cpp +0 -37
- pyquantlib-0.7.0/src/math/randomnumbers/randomsequencegenerator.cpp +0 -46
- pyquantlib-0.7.0/src/math/randomnumbers/sobolbrownianbridgersg.cpp +0 -66
- pyquantlib-0.7.0/src/math/randomnumbers/sobolrsg.cpp +0 -60
- pyquantlib-0.7.0/src/math/richardsonextrapolation.cpp +0 -41
- pyquantlib-0.7.0/src/math/rounding.cpp +0 -79
- pyquantlib-0.7.0/src/math/solvers1d/solvers1d.cpp +0 -116
- pyquantlib-0.7.0/src/math/statistics/incrementalstatistics.cpp +0 -78
- pyquantlib-0.7.0/src/math/statistics/sequencestatistics.cpp +0 -119
- pyquantlib-0.7.0/src/math/statistics/statistics.cpp +0 -137
- pyquantlib-0.7.0/src/methods/all.cpp +0 -186
- pyquantlib-0.7.0/src/methods/finitedifferences/boundarycondition.cpp +0 -39
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/concentrating1dmesher.cpp +0 -50
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/exponentialjump1dmesher.cpp +0 -47
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdm1dmesher.cpp +0 -44
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmblackscholesmesher.cpp +0 -71
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmcev1dmesher.cpp +0 -43
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmhestonvariancemesher.cpp +0 -59
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmmesher.cpp +0 -41
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmmeshercomposite.cpp +0 -56
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/fdmsimpleprocess1dmesher.cpp +0 -43
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/glued1dmesher.cpp +0 -29
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/predefined1dmesher.cpp +0 -30
- pyquantlib-0.7.0/src/methods/finitedifferences/meshers/uniform1dmesher.cpp +0 -29
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdm2dblackscholesop.cpp +0 -47
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmbatesop.cpp +0 -40
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmblackscholesfwdop.cpp +0 -45
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmblackscholesop.cpp +0 -49
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmcevop.cpp +0 -48
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmg2op.cpp +0 -34
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhestonfwdop.cpp +0 -39
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhestonhullwhiteop.cpp +0 -36
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhestonop.cpp +0 -40
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmhullwhiteop.cpp +0 -33
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearop.cpp +0 -28
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearopcomposite.cpp +0 -43
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearopiterator.cpp +0 -46
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlinearoplayout.cpp +0 -73
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmlocalvolfwdop.cpp +0 -40
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmornsteinuhlenbeckop.cpp +0 -36
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmsabrop.cpp +0 -35
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/fdmsquarerootfwdop.cpp +0 -50
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/firstderivativeop.cpp +0 -30
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/ninepointlinearop.cpp +0 -36
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/nthorderderivativeop.cpp +0 -32
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/secondderivativeop.cpp +0 -30
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/secondordermixedderivativeop.cpp +0 -30
- pyquantlib-0.7.0/src/methods/finitedifferences/operators/triplebandlinearop.cpp +0 -55
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/craigsneydscheme.cpp +0 -41
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/cranknicolsonscheme.cpp +0 -45
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/douglasscheme.cpp +0 -40
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/expliciteulerscheme.cpp +0 -39
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/hundsdorferscheme.cpp +0 -41
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/impliciteulerscheme.cpp +0 -51
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/methodoflinesscheme.cpp +0 -41
- pyquantlib-0.7.0/src/methods/finitedifferences/schemes/modifiedcraigsneydscheme.cpp +0 -41
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm1dimsolver.cpp +0 -47
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm2dblackscholessolver.cpp +0 -95
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm2dimsolver.cpp +0 -56
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdm3dimsolver.cpp +0 -41
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmbackwardsolver.cpp +0 -100
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmbatessolver.cpp +0 -80
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmblackscholessolver.cpp +0 -97
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmg2solver.cpp +0 -54
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmhestonsolver.cpp +0 -95
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmhullwhitesolver.cpp +0 -54
- pyquantlib-0.7.0/src/methods/finitedifferences/solvers/fdmsolverdesc.cpp +0 -55
- pyquantlib-0.7.0/src/methods/finitedifferences/stepcondition.cpp +0 -32
- pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmamericanstepcondition.cpp +0 -33
- pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmarithmeticaveragecondition.cpp +0 -36
- pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmbermudanstepcondition.cpp +0 -44
- pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmsimpleswingcondition.cpp +0 -39
- pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmsnapshotcondition.cpp +0 -35
- pyquantlib-0.7.0/src/methods/finitedifferences/stepconditions/fdmstepconditioncomposite.cpp +0 -57
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/bsmrndcalculator.cpp +0 -31
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/cevrndcalculator.cpp +0 -33
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmdirichletboundary.cpp +0 -35
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmdiscountdirichletboundary.cpp +0 -39
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmdividendhandler.cpp +0 -50
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmhestongreensfct.cpp +0 -27
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdminnervaluecalculator.cpp +0 -91
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmquantohelper.cpp +0 -55
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/fdmtimedepdirichletboundary.cpp +0 -37
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/gbsmrndcalculator.cpp +0 -31
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/hestonrndcalculator.cpp +0 -33
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/localvolrndcalculator.cpp +0 -90
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/riskneutraldensitycalculator.cpp +0 -35
- pyquantlib-0.7.0/src/methods/finitedifferences/utilities/squarerootprocessrndcalculator.cpp +0 -40
- pyquantlib-0.7.0/src/methods/montecarlo/brownianbridge.cpp +0 -66
- pyquantlib-0.7.0/src/methods/montecarlo/lsmbasissystem.cpp +0 -32
- pyquantlib-0.7.0/src/methods/montecarlo/multipath.cpp +0 -47
- pyquantlib-0.7.0/src/methods/montecarlo/multipathgenerator.cpp +0 -71
- pyquantlib-0.7.0/src/methods/montecarlo/path.cpp +0 -51
- pyquantlib-0.7.0/src/methods/montecarlo/pathgenerator.cpp +0 -86
- pyquantlib-0.7.0/src/methods/montecarlo/sample.cpp +0 -72
- pyquantlib-0.7.0/src/models/all.cpp +0 -72
- pyquantlib-0.7.0/src/models/calibrationhelper.cpp +0 -70
- pyquantlib-0.7.0/src/models/equity/batesmodel.cpp +0 -31
- pyquantlib-0.7.0/src/models/equity/gjrgarchmodel.cpp +0 -43
- pyquantlib-0.7.0/src/models/equity/hestonmodel.cpp +0 -44
- pyquantlib-0.7.0/src/models/equity/hestonmodelhelper.cpp +0 -90
- pyquantlib-0.7.0/src/models/equity/hestonslvfdmmodel.cpp +0 -164
- pyquantlib-0.7.0/src/models/equity/hestonslvmcmodel.cpp +0 -75
- pyquantlib-0.7.0/src/models/marketmodels/browniangenerator.cpp +0 -45
- pyquantlib-0.7.0/src/models/marketmodels/browniangenerators/mtbrowniangenerator.cpp +0 -37
- pyquantlib-0.7.0/src/models/marketmodels/browniangenerators/sobolbrowniangenerator.cpp +0 -83
- pyquantlib-0.7.0/src/models/model.cpp +0 -95
- pyquantlib-0.7.0/src/models/parameter.cpp +0 -49
- pyquantlib-0.7.0/src/models/piecewisetimedependenthestonmodel.cpp +0 -61
- pyquantlib-0.7.0/src/models/shortrate/calibrationhelpers/caphelper.cpp +0 -78
- pyquantlib-0.7.0/src/models/shortrate/calibrationhelpers/swaptionhelper.cpp +0 -215
- pyquantlib-0.7.0/src/models/shortrate/onefactormodel.cpp +0 -39
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/blackkarasinski.cpp +0 -43
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/coxingersollross.cpp +0 -37
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/extendedcoxingersollross.cpp +0 -52
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/gaussian1dmodel.cpp +0 -112
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/gsr.cpp +0 -141
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/hullwhite.cpp +0 -60
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/markovfunctional.cpp +0 -243
- pyquantlib-0.7.0/src/models/shortrate/onefactormodels/vasicek.cpp +0 -45
- pyquantlib-0.7.0/src/models/shortrate/twofactormodel.cpp +0 -28
- pyquantlib-0.7.0/src/models/shortrate/twofactormodels/g2.cpp +0 -71
- pyquantlib-0.7.0/src/patterns/all.cpp +0 -22
- pyquantlib-0.7.0/src/patterns/lazyobject.cpp +0 -42
- pyquantlib-0.7.0/src/patterns/observable.cpp +0 -65
- pyquantlib-0.7.0/src/pricingengines/all.cpp +0 -272
- pyquantlib-0.7.0/src/pricingengines/asian/analytic_cont_geom_av_price.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/asian/analytic_discr_geom_av_price.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/asian/analytic_discr_geom_av_strike.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/asian/choiasianengine.cpp +0 -34
- pyquantlib-0.7.0/src/pricingengines/asian/continuousarithmeticasianlevyengine.cpp +0 -42
- pyquantlib-0.7.0/src/pricingengines/asian/fdblackscholesasianengine.cpp +0 -37
- pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_arith_av_price.cpp +0 -71
- pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_arith_av_price_heston.cpp +0 -93
- pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_arith_av_strike.cpp +0 -67
- pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_geom_av_price.cpp +0 -67
- pyquantlib-0.7.0/src/pricingengines/asian/mc_discr_geom_av_price_heston.cpp +0 -89
- pyquantlib-0.7.0/src/pricingengines/asian/turnbullwakemanasianengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/bacheliercalculator.cpp +0 -85
- pyquantlib-0.7.0/src/pricingengines/barrier/analyticbarrierengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/barrier/analyticbinarybarrierengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/barrier/analyticdoublebarrierbinaryengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/barrier/analyticdoublebarrierengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/barrier/analyticpartialtimebarrieroptionengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/barrier/analyticsoftbarrierengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/barrier/analytictwoassetbarrierengine.cpp +0 -45
- pyquantlib-0.7.0/src/pricingengines/barrier/binomialbarrierengine.cpp +0 -94
- pyquantlib-0.7.0/src/pricingengines/barrier/fdblackscholesbarrierengine.cpp +0 -38
- pyquantlib-0.7.0/src/pricingengines/barrier/fdblackscholesrebateengine.cpp +0 -38
- pyquantlib-0.7.0/src/pricingengines/barrier/fdhestonbarrierengine.cpp +0 -38
- pyquantlib-0.7.0/src/pricingengines/barrier/fdhestondoublebarrierengine.cpp +0 -38
- pyquantlib-0.7.0/src/pricingengines/barrier/fdhestonrebateengine.cpp +0 -38
- pyquantlib-0.7.0/src/pricingengines/barrier/mcbarrierengine.cpp +0 -105
- pyquantlib-0.7.0/src/pricingengines/barrier/mcdoublebarrierengine.cpp +0 -99
- pyquantlib-0.7.0/src/pricingengines/basket/bjerksundstenslandspreadengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/basket/choibasketengine.cpp +0 -38
- pyquantlib-0.7.0/src/pricingengines/basket/denglizhoubasketengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/basket/fd2dblackscholesvanillaengine.cpp +0 -36
- pyquantlib-0.7.0/src/pricingengines/basket/fdndimblackscholesvanillaengine.cpp +0 -48
- pyquantlib-0.7.0/src/pricingengines/basket/kirkengine.cpp +0 -29
- pyquantlib-0.7.0/src/pricingengines/basket/mcamericanbasketengine.cpp +0 -86
- pyquantlib-0.7.0/src/pricingengines/basket/mceuropeanbasketengine.cpp +0 -96
- pyquantlib-0.7.0/src/pricingengines/basket/operatorsplittingspreadengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/basket/singlefactorbsmbasketengine.cpp +0 -33
- pyquantlib-0.7.0/src/pricingengines/basket/spreadblackscholesvanillaengine.cpp +0 -46
- pyquantlib-0.7.0/src/pricingengines/basket/stulzengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/blackcalculator.cpp +0 -85
- pyquantlib-0.7.0/src/pricingengines/blackformula.cpp +0 -149
- pyquantlib-0.7.0/src/pricingengines/bond/binomialconvertibleengine.cpp +0 -139
- pyquantlib-0.7.0/src/pricingengines/bond/bondfunctions.cpp +0 -177
- pyquantlib-0.7.0/src/pricingengines/bond/discountingbondengine.cpp +0 -46
- pyquantlib-0.7.0/src/pricingengines/capfloor/analyticcapfloorengine.cpp +0 -45
- pyquantlib-0.7.0/src/pricingengines/capfloor/bacheliercapfloorengine.cpp +0 -64
- pyquantlib-0.7.0/src/pricingengines/capfloor/blackcapfloorengine.cpp +0 -68
- pyquantlib-0.7.0/src/pricingengines/capfloor/gaussian1dcapfloorengine.cpp +0 -39
- pyquantlib-0.7.0/src/pricingengines/capfloor/treecapfloorengine.cpp +0 -56
- pyquantlib-0.7.0/src/pricingengines/cliquet/analyticcliquetengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/credit/isdacdsengine.cpp +0 -89
- pyquantlib-0.7.0/src/pricingengines/credit/midpointcdsengine.cpp +0 -54
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticamericanmargrabeengine.cpp +0 -34
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticcomplexchooserengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticcompoundoptionengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticeuropeanmargrabeengine.cpp +0 -34
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticholderextensibleoptionengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticsimplechooserengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/exotic/analytictwoassetcorrelationengine.cpp +0 -46
- pyquantlib-0.7.0/src/pricingengines/exotic/analyticwriterextensibleoptionengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/forward/forwardengine.cpp +0 -44
- pyquantlib-0.7.0/src/pricingengines/forward/mcforwardeuropeanbsengine.cpp +0 -99
- pyquantlib-0.7.0/src/pricingengines/forward/mcforwardeuropeanhestonengine.cpp +0 -99
- pyquantlib-0.7.0/src/pricingengines/forward/replicatingvarianceswapengine.cpp +0 -35
- pyquantlib-0.7.0/src/pricingengines/genericmodelengine.cpp +0 -37
- pyquantlib-0.7.0/src/pricingengines/inflation/inflationcapfloorengines.cpp +0 -125
- pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuousfixedlookback.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuousfloatinglookback.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuouspartialfixedlookback.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/lookback/analyticcontinuouspartialfloatinglookback.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/quanto/quantoengine.cpp +0 -95
- pyquantlib-0.7.0/src/pricingengines/swap/discountingswapengine.cpp +0 -52
- pyquantlib-0.7.0/src/pricingengines/swaption/blackswaptionengine.cpp +0 -117
- pyquantlib-0.7.0/src/pricingengines/swaption/fdg2swaptionengine.cpp +0 -36
- pyquantlib-0.7.0/src/pricingengines/swaption/fdhullwhiteswaptionengine.cpp +0 -35
- pyquantlib-0.7.0/src/pricingengines/swaption/g2swaptionengine.cpp +0 -30
- pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1dfloatfloatswaptionengine.cpp +0 -57
- pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1djamshidianswaptionengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1dnonstandardswaptionengine.cpp +0 -55
- pyquantlib-0.7.0/src/pricingengines/swaption/gaussian1dswaptionengine.cpp +0 -52
- pyquantlib-0.7.0/src/pricingengines/swaption/jamshidianswaptionengine.cpp +0 -44
- pyquantlib-0.7.0/src/pricingengines/swaption/treeswaptionengine.cpp +0 -60
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticbsmhullwhiteengine.cpp +0 -36
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticcevengine.cpp +0 -59
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticdigitalamericanengine.cpp +0 -40
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticdividendeuropeanengine.cpp +0 -35
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticeuropeanengine.cpp +0 -43
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticeuropeanvasicekengine.cpp +0 -33
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticgjrgarchengine.cpp +0 -29
- pyquantlib-0.7.0/src/pricingengines/vanilla/analytich1hwengine.cpp +0 -48
- pyquantlib-0.7.0/src/pricingengines/vanilla/analytichestonengine.cpp +0 -110
- pyquantlib-0.7.0/src/pricingengines/vanilla/analytichestonhullwhiteengine.cpp +0 -44
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticpdfhestonengine.cpp +0 -39
- pyquantlib-0.7.0/src/pricingengines/vanilla/analyticptdhestonengine.cpp +0 -50
- pyquantlib-0.7.0/src/pricingengines/vanilla/baroneadesiwhaleyengine.cpp +0 -39
- pyquantlib-0.7.0/src/pricingengines/vanilla/batesengine.cpp +0 -34
- pyquantlib-0.7.0/src/pricingengines/vanilla/binomialengine.cpp +0 -83
- pyquantlib-0.7.0/src/pricingengines/vanilla/bjerksundstenslandengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/vanilla/cashdividendeuropeanengine.cpp +0 -45
- pyquantlib-0.7.0/src/pricingengines/vanilla/coshestonengine.cpp +0 -49
- pyquantlib-0.7.0/src/pricingengines/vanilla/exponentialfittinghestonengine.cpp +0 -43
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdbatesvanillaengine.cpp +0 -52
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdblackscholesshoutengine.cpp +0 -50
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdblackscholesvanillaengine.cpp +0 -61
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdcevvanillaengine.cpp +0 -67
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdhestonhullwhitevanillaengine.cpp +0 -62
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdhestonvanillaengine.cpp +0 -98
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdornsteinuhlenbeckvanillaengine.cpp +0 -56
- pyquantlib-0.7.0/src/pricingengines/vanilla/fdsabrvanillaengine.cpp +0 -73
- pyquantlib-0.7.0/src/pricingengines/vanilla/hestonexpansionengine.cpp +0 -40
- pyquantlib-0.7.0/src/pricingengines/vanilla/integralengine.cpp +0 -28
- pyquantlib-0.7.0/src/pricingengines/vanilla/juquadraticengine.cpp +0 -31
- pyquantlib-0.7.0/src/pricingengines/vanilla/mcamericanengine.cpp +0 -128
- pyquantlib-0.7.0/src/pricingengines/vanilla/mcdigitalengine.cpp +0 -99
- pyquantlib-0.7.0/src/pricingengines/vanilla/mceuropeanengine.cpp +0 -112
- pyquantlib-0.7.0/src/pricingengines/vanilla/mceuropeangjrgarchengine.cpp +0 -96
- pyquantlib-0.7.0/src/pricingengines/vanilla/mceuropeanhestonengine.cpp +0 -106
- pyquantlib-0.7.0/src/pricingengines/vanilla/qdfpamericanengine.cpp +0 -86
- pyquantlib-0.7.0/src/pricingengines/vanilla/qdplusamericanengine.cpp +0 -53
- pyquantlib-0.7.0/src/processes/all.cpp +0 -58
- pyquantlib-0.7.0/src/processes/batesprocess.cpp +0 -81
- pyquantlib-0.7.0/src/processes/blackscholesprocess.cpp +0 -240
- pyquantlib-0.7.0/src/processes/eulerdiscretization.cpp +0 -27
- pyquantlib-0.7.0/src/processes/extendedornsteinuhlenbeckprocess.cpp +0 -53
- pyquantlib-0.7.0/src/processes/forwardmeasureprocess.cpp +0 -47
- pyquantlib-0.7.0/src/processes/g2process.cpp +0 -48
- pyquantlib-0.7.0/src/processes/geometricbrownianmotionprocess.cpp +0 -33
- pyquantlib-0.7.0/src/processes/gjrgarchprocess.cpp +0 -95
- pyquantlib-0.7.0/src/processes/hestonprocess.cpp +0 -92
- pyquantlib-0.7.0/src/processes/hestonslvprocess.cpp +0 -60
- pyquantlib-0.7.0/src/processes/hullwhiteprocess.cpp +0 -83
- pyquantlib-0.7.0/src/processes/hybridhestonhullwhiteprocess.cpp +0 -52
- pyquantlib-0.7.0/src/processes/merton76process.cpp +0 -86
- pyquantlib-0.7.0/src/processes/ornsteinuhlenbeckprocess.cpp +0 -41
- pyquantlib-0.7.0/src/processes/squarerootprocess.cpp +0 -40
- pyquantlib-0.7.0/src/processes/stochasticprocessarray.cpp +0 -76
- pyquantlib-0.7.0/src/quotes/all.cpp +0 -21
- pyquantlib-0.7.0/src/quotes/compositequote.cpp +0 -59
- pyquantlib-0.7.0/src/quotes/derivedquote.cpp +0 -58
- pyquantlib-0.7.0/src/quotes/simplequote.cpp +0 -38
- pyquantlib-0.7.0/src/submodules.cpp +0 -19
- pyquantlib-0.7.0/src/termstructures/all.cpp +0 -212
- pyquantlib-0.7.0/src/termstructures/credit/defaultprobabilityhelpers.cpp +0 -227
- pyquantlib-0.7.0/src/termstructures/credit/flathazardrate.cpp +0 -66
- pyquantlib-0.7.0/src/termstructures/credit/piecewisedefaultcurve.cpp +0 -91
- pyquantlib-0.7.0/src/termstructures/defaulttermstructure.cpp +0 -70
- pyquantlib-0.7.0/src/termstructures/globalbootstrap.cpp +0 -152
- pyquantlib-0.7.0/src/termstructures/inflation/inflationhelper.cpp +0 -77
- pyquantlib-0.7.0/src/termstructures/inflation/inflationhelpers.cpp +0 -183
- pyquantlib-0.7.0/src/termstructures/inflation/interpolatedyoyinflationcurve.cpp +0 -62
- pyquantlib-0.7.0/src/termstructures/inflation/interpolatedzeroinflationcurve.cpp +0 -62
- pyquantlib-0.7.0/src/termstructures/inflation/piecewiseyoyinflationcurve.cpp +0 -68
- pyquantlib-0.7.0/src/termstructures/inflation/piecewisezeroinflationcurve.cpp +0 -66
- pyquantlib-0.7.0/src/termstructures/inflation/seasonality.cpp +0 -82
- pyquantlib-0.7.0/src/termstructures/inflationtermstructure.cpp +0 -98
- pyquantlib-0.7.0/src/termstructures/multicurve.cpp +0 -56
- pyquantlib-0.7.0/src/termstructures/volatility/capfloor/capfloortermvolatilitystructure.cpp +0 -48
- pyquantlib-0.7.0/src/termstructures/volatility/capfloor/capfloortermvolsurface.cpp +0 -66
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/andreasenhugelocalvoladapter.cpp +0 -31
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityadapter.cpp +0 -32
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/andreasenhugevolatilityinterpl.cpp +0 -90
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/blackconstantvol.cpp +0 -74
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/blackvariancesurface.cpp +0 -82
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/blackvoltermstructure.cpp +0 -146
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/fixedlocalvolsurface.cpp +0 -102
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/localconstantvol.cpp +0 -70
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/localvolsurface.cpp +0 -75
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/localvoltermstructure.cpp +0 -73
- pyquantlib-0.7.0/src/termstructures/volatility/equityfx/noexceptlocalvolsurface.cpp +0 -85
- pyquantlib-0.7.0/src/termstructures/volatility/flatsmilesection.cpp +0 -60
- pyquantlib-0.7.0/src/termstructures/volatility/hestonblackvolsurface.cpp +0 -38
- pyquantlib-0.7.0/src/termstructures/volatility/inflation/yoyinflationoptionletvolatilitystructure.cpp +0 -148
- pyquantlib-0.7.0/src/termstructures/volatility/kahalesmilesection.cpp +0 -62
- pyquantlib-0.7.0/src/termstructures/volatility/noarbsabr.cpp +0 -54
- pyquantlib-0.7.0/src/termstructures/volatility/noarbsabrinterpolatedsmilesection.cpp +0 -78
- pyquantlib-0.7.0/src/termstructures/volatility/noarbsabrsmilesection.cpp +0 -51
- pyquantlib-0.7.0/src/termstructures/volatility/optionlet/constantoptionletvol.cpp +0 -87
- pyquantlib-0.7.0/src/termstructures/volatility/optionlet/optionletstripper.cpp +0 -44
- pyquantlib-0.7.0/src/termstructures/volatility/optionlet/optionletstripper1.cpp +0 -102
- pyquantlib-0.7.0/src/termstructures/volatility/optionlet/optionletvolatilitystructure.cpp +0 -123
- pyquantlib-0.7.0/src/termstructures/volatility/optionlet/strippedoptionletadapter.cpp +0 -40
- pyquantlib-0.7.0/src/termstructures/volatility/optionlet/strippedoptionletbase.cpp +0 -60
- pyquantlib-0.7.0/src/termstructures/volatility/sabrinterpolatedsmilesection.cpp +0 -66
- pyquantlib-0.7.0/src/termstructures/volatility/sabrsmilesection.cpp +0 -67
- pyquantlib-0.7.0/src/termstructures/volatility/smilesection.cpp +0 -103
- pyquantlib-0.7.0/src/termstructures/volatility/spreadedswaptionvol.cpp +0 -42
- pyquantlib-0.7.0/src/termstructures/volatility/swaption/sabrswaptionvolcube.cpp +0 -101
- pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionconstantvol.cpp +0 -89
- pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvolcube.cpp +0 -53
- pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvoldiscrete.cpp +0 -41
- pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvolmatrix.cpp +0 -106
- pyquantlib-0.7.0/src/termstructures/volatility/swaption/swaptionvolstructure.cpp +0 -160
- pyquantlib-0.7.0/src/termstructures/volatility/volatilitytype.cpp +0 -28
- pyquantlib-0.7.0/src/termstructures/voltermstructure.cpp +0 -50
- pyquantlib-0.7.0/src/termstructures/yield/bondhelpers.cpp +0 -200
- pyquantlib-0.7.0/src/termstructures/yield/compositezeroyieldstructure.cpp +0 -55
- pyquantlib-0.7.0/src/termstructures/yield/discountcurve.cpp +0 -60
- pyquantlib-0.7.0/src/termstructures/yield/fittedbonddiscountcurve.cpp +0 -107
- pyquantlib-0.7.0/src/termstructures/yield/flatforward.cpp +0 -92
- pyquantlib-0.7.0/src/termstructures/yield/forwardcurve.cpp +0 -60
- pyquantlib-0.7.0/src/termstructures/yield/forwardspreadedtermstructure.cpp +0 -41
- pyquantlib-0.7.0/src/termstructures/yield/impliedtermstructure.cpp +0 -39
- pyquantlib-0.7.0/src/termstructures/yield/nonlinearfittingmethods.cpp +0 -155
- pyquantlib-0.7.0/src/termstructures/yield/oisratehelper.cpp +0 -271
- pyquantlib-0.7.0/src/termstructures/yield/piecewiseyieldcurve.cpp +0 -105
- pyquantlib-0.7.0/src/termstructures/yield/quantotermstructure.cpp +0 -71
- pyquantlib-0.7.0/src/termstructures/yield/ratehelpers.cpp +0 -287
- pyquantlib-0.7.0/src/termstructures/yield/ultimateforwardtermstructure.cpp +0 -56
- pyquantlib-0.7.0/src/termstructures/yield/zerocurve.cpp +0 -69
- pyquantlib-0.7.0/src/termstructures/yield/zerospreadedtermstructure.cpp +0 -49
- pyquantlib-0.7.0/src/termstructures/yieldtermstructure.cpp +0 -110
- pyquantlib-0.7.0/src/time/all.cpp +0 -36
- pyquantlib-0.7.0/src/time/businessdayconvention.cpp +0 -43
- pyquantlib-0.7.0/src/time/calendar.cpp +0 -108
- pyquantlib-0.7.0/src/time/calendars/calendars.cpp +0 -678
- pyquantlib-0.7.0/src/time/date.cpp +0 -203
- pyquantlib-0.7.0/src/time/dategenerationrule.cpp +0 -53
- pyquantlib-0.7.0/src/time/daycounter.cpp +0 -61
- pyquantlib-0.7.0/src/time/daycounters/daycounters.cpp +0 -122
- pyquantlib-0.7.0/src/time/frequency.cpp +0 -39
- pyquantlib-0.7.0/src/time/period.cpp +0 -107
- pyquantlib-0.7.0/src/time/schedule.cpp +0 -154
- pyquantlib-0.7.0/src/time/timeunit.cpp +0 -35
- pyquantlib-0.7.0/src/time/weekday.cpp +0 -40
- pyquantlib-0.7.0/src/utilities/all.cpp +0 -20
- pyquantlib-0.7.0/src/utilities/null.cpp +0 -53
- pyquantlib-0.7.0/src/utilities/observablevalue.cpp +0 -40
- pyquantlib-0.7.0/tests/test_cashflows.py +0 -2315
- pyquantlib-0.7.0/tests/test_core.py +0 -434
- pyquantlib-0.7.0/tests/test_currencies.py +0 -308
- pyquantlib-0.7.0/tests/test_experimental_exoticoptions.py +0 -72
- pyquantlib-0.7.0/tests/test_indexes.py +0 -1001
- pyquantlib-0.7.0/tests/test_instruments.py +0 -4142
- pyquantlib-0.7.0/tests/test_math_interpolations.py +0 -291
- pyquantlib-0.7.0/tests/test_math_optimization.py +0 -133
- pyquantlib-0.7.0/tests/test_math_randomnumbers.py +0 -532
- pyquantlib-0.7.0/tests/test_methods.py +0 -2929
- pyquantlib-0.7.0/tests/test_pricingengines_basket.py +0 -697
- pyquantlib-0.7.0/tests/test_pricingengines_bond.py +0 -341
- pyquantlib-0.7.0/tests/test_pricingengines_exotic.py +0 -216
- pyquantlib-0.7.0/tests/test_pricingengines_vanilla.py +0 -1891
- pyquantlib-0.7.0/tests/test_quotes.py +0 -348
- pyquantlib-0.7.0/tests/test_termstructures_volatility.py +0 -2628
- pyquantlib-0.7.0/tests/test_termstructures_yield.py +0 -1759
- pyquantlib-0.7.0/tests/test_time.py +0 -1214
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.gitattributes +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.github/ISSUE_TEMPLATE/infrastructure.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/.readthedocs.yaml +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/CITATION.cff +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/CMakeLists.txt +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/CMakePresets.json +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/LICENSE +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/SECURITY.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/api/index.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/handles.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/numpy.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/docs/troubleshooting.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/examples/README.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/extensions.json +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyproject.toml +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/__init__.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/extensions/__init__.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/extensions/modified_kirk_engine.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/extensions/svi_smile_section.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/pyquantlib/py.typed +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/requirements-dev.txt +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/README.md +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/build_docs.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/clean.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/rebuild.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/stubgen.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/scripts/test.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/settings.json +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/conftest.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_callablebonds.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_credit.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_variancegamma.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_experimental_volatility.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_extensions.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_instruments_bonds.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_distributions.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_integrals.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_solvers1d.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_math_statistics.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_models.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_models_equity.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_models_shortrate.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_asian.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_barrier.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_capfloor.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_cliquet.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_credit.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_forward.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_lookback.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_quanto.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_pricingengines_swaption.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_processes.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_termstructures.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_termstructures_credit.py +0 -0
- {pyquantlib-0.7.0 → pyquantlib-0.9.0}/tests/test_termstructures_inflation.py +0 -0
- {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
|