.gitattributes
.readthedocs.yaml
CHANGELOG.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
Makefile
README.md
RELEASING.md
pyproject.toml
uv.lock
.agents/skills/add-feature/SKILL.md
.codex/config.toml
.codex/hooks.json
.codex/agents/fi_api_reviewer.toml
.codex/agents/fi_diff_reviewer.toml
.codex/agents/fi_finance_reviewer.toml
docs/MODULE_REFERENCE.md
docs/SRC_STRUCTURE.md
docs/STATUS.md
docs/conf.py
docs/conventions.md
docs/docstring_standard.md
docs/index.md
docs/validation_strategy.md
docs/_static/.gitkeep
docs/_static/custom.css
docs/_static/fuggers-py-logo.png
docs/_static/api/curves-bumped-helper.svg
docs/_static/api/curves-class-hierarchy.svg
docs/_static/api/curves-fit-reports.svg
docs/_static/api/curves-main-workflow.svg
docs/_static/api/curves-yieldcurve-wrapper.svg
docs/_templates/.gitkeep
docs/api/bonds.md
docs/api/credit.md
docs/api/curves.md
docs/api/funding.md
docs/api/index.md
docs/api/inflation.md
docs/api/portfolio.md
docs/api/rates.md
docs/api/vol_surfaces.md
docs/dev/internal_modules.md
examples/01_treasury_curve_fit.ipynb
examples/README.md
specs/public_api_surface.json
src/fuggers_py/__init__.py
src/fuggers_py/_version.py
src/fuggers_py/py.typed
src/fuggers_py.egg-info/PKG-INFO
src/fuggers_py.egg-info/SOURCES.txt
src/fuggers_py.egg-info/dependency_links.txt
src/fuggers_py.egg-info/requires.txt
src/fuggers_py.egg-info/top_level.txt
src/fuggers_py/_core/__init__.py
src/fuggers_py/_core/calendar_id.py
src/fuggers_py/_core/calendars.py
src/fuggers_py/_core/compounding.py
src/fuggers_py/_core/daycounts.py
src/fuggers_py/_core/errors.py
src/fuggers_py/_core/ex_dividend.py
src/fuggers_py/_core/ids.py
src/fuggers_py/_core/option_type.py
src/fuggers_py/_core/pay_receive.py
src/fuggers_py/_core/quote_support.py
src/fuggers_py/_core/reference.py
src/fuggers_py/_core/settlement_rules.py
src/fuggers_py/_core/stub_rules.py
src/fuggers_py/_core/tenor.py
src/fuggers_py/_core/traits.py
src/fuggers_py/_core/types.py
src/fuggers_py/_core/yield_calculation_rules.py
src/fuggers_py/_core/yield_convention.py
src/fuggers_py/_math/__init__.py
src/fuggers_py/_math/errors.py
src/fuggers_py/_math/numerical.py
src/fuggers_py/_math/utils.py
src/fuggers_py/_math/extrapolation/__init__.py
src/fuggers_py/_math/extrapolation/base.py
src/fuggers_py/_math/extrapolation/flat.py
src/fuggers_py/_math/extrapolation/linear.py
src/fuggers_py/_math/extrapolation/smith_wilson.py
src/fuggers_py/_math/interpolation/__init__.py
src/fuggers_py/_math/interpolation/base.py
src/fuggers_py/_math/interpolation/cubic_spline.py
src/fuggers_py/_math/interpolation/flat_forward.py
src/fuggers_py/_math/interpolation/linear.py
src/fuggers_py/_math/interpolation/log_linear.py
src/fuggers_py/_math/interpolation/monotone_convex.py
src/fuggers_py/_math/interpolation/parametric.py
src/fuggers_py/_math/linear_algebra/__init__.py
src/fuggers_py/_math/linear_algebra/lu.py
src/fuggers_py/_math/linear_algebra/solve.py
src/fuggers_py/_math/linear_algebra/tridiagonal.py
src/fuggers_py/_math/optimization/__init__.py
src/fuggers_py/_math/optimization/gradient_descent.py
src/fuggers_py/_math/optimization/least_squares.py
src/fuggers_py/_math/optimization/types.py
src/fuggers_py/_math/solvers/__init__.py
src/fuggers_py/_math/solvers/bisection.py
src/fuggers_py/_math/solvers/brent.py
src/fuggers_py/_math/solvers/hybrid.py
src/fuggers_py/_math/solvers/newton.py
src/fuggers_py/_math/solvers/secant.py
src/fuggers_py/_math/solvers/types.py
src/fuggers_py/_runtime/__init__.py
src/fuggers_py/_runtime/_shared.py
src/fuggers_py/_runtime/builder.py
src/fuggers_py/_runtime/calc_graph.py
src/fuggers_py/_runtime/config.py
src/fuggers_py/_runtime/coordination.py
src/fuggers_py/_runtime/errors.py
src/fuggers_py/_runtime/market_data_listener.py
src/fuggers_py/_runtime/output.py
src/fuggers_py/_runtime/pricing_router.py
src/fuggers_py/_runtime/pricing_specs.py
src/fuggers_py/_runtime/quotes.py
src/fuggers_py/_runtime/reactive.py
src/fuggers_py/_runtime/scheduler.py
src/fuggers_py/_runtime/snapshot.py
src/fuggers_py/_runtime/sources.py
src/fuggers_py/_runtime/state.py
src/fuggers_py/_storage/__init__.py
src/fuggers_py/_storage/file.py
src/fuggers_py/_storage/json_codec.py
src/fuggers_py/_storage/portfolio_store.py
src/fuggers_py/_storage/sqlite_storage.py
src/fuggers_py/_storage/storage.py
src/fuggers_py/_storage/transport.py
src/fuggers_py/bonds/__init__.py
src/fuggers_py/bonds/_instrument_base.py
src/fuggers_py/bonds/_pricing_pricer.py
src/fuggers_py/bonds/_pricing_risk.py
src/fuggers_py/bonds/_pricing_yield_engine.py
src/fuggers_py/bonds/analytics.py
src/fuggers_py/bonds/analytics_pricing.py
src/fuggers_py/bonds/errors.py
src/fuggers_py/bonds/pricing.py
src/fuggers_py/bonds/products.py
src/fuggers_py/bonds/quotes.py
src/fuggers_py/bonds/reference_data.py
src/fuggers_py/bonds/risk.py
src/fuggers_py/bonds/spreads.py
src/fuggers_py/bonds/yas.py
src/fuggers_py/bonds/yields.py
src/fuggers_py/bonds/_spreads/__init__.py
src/fuggers_py/bonds/_spreads/benchmark.py
src/fuggers_py/bonds/_spreads/compounding_convexity.py
src/fuggers_py/bonds/_spreads/discount_margin.py
src/fuggers_py/bonds/_spreads/government_curve.py
src/fuggers_py/bonds/_spreads/gspread.py
src/fuggers_py/bonds/_spreads/ispread.py
src/fuggers_py/bonds/_spreads/oas.py
src/fuggers_py/bonds/_spreads/reference_rates.py
src/fuggers_py/bonds/_spreads/secured_unsecured_basis.py
src/fuggers_py/bonds/_spreads/sovereign.py
src/fuggers_py/bonds/_spreads/zspread.py
src/fuggers_py/bonds/_spreads/adjustments/__init__.py
src/fuggers_py/bonds/_spreads/adjustments/balance_sheet.py
src/fuggers_py/bonds/_spreads/adjustments/capital.py
src/fuggers_py/bonds/_spreads/adjustments/haircuts.py
src/fuggers_py/bonds/_spreads/adjustments/shadow_cost.py
src/fuggers_py/bonds/_spreads/asw/__init__.py
src/fuggers_py/bonds/_spreads/asw/par_par.py
src/fuggers_py/bonds/_spreads/asw/proceeds.py
src/fuggers_py/bonds/_types/__init__.py
src/fuggers_py/bonds/_types/amortization.py
src/fuggers_py/bonds/_types/asw.py
src/fuggers_py/bonds/_types/compounding.py
src/fuggers_py/bonds/_types/ex_dividend.py
src/fuggers_py/bonds/_types/identifiers.py
src/fuggers_py/bonds/_types/inflation.py
src/fuggers_py/bonds/_types/options.py
src/fuggers_py/bonds/_types/price_quote.py
src/fuggers_py/bonds/_types/rate_index.py
src/fuggers_py/bonds/_types/rating.py
src/fuggers_py/bonds/_types/sector.py
src/fuggers_py/bonds/_types/seniority.py
src/fuggers_py/bonds/_types/settlement_rules.py
src/fuggers_py/bonds/_types/sofr_convention.py
src/fuggers_py/bonds/_types/stub_rules.py
src/fuggers_py/bonds/_types/tenor.py
src/fuggers_py/bonds/_types/yield_convention.py
src/fuggers_py/bonds/_types/yield_rules.py
src/fuggers_py/bonds/_yas/__init__.py
src/fuggers_py/bonds/_yas/analysis.py
src/fuggers_py/bonds/_yas/calculator.py
src/fuggers_py/bonds/_yas/invoice.py
src/fuggers_py/bonds/_yields/__init__.py
src/fuggers_py/bonds/_yields/bond.py
src/fuggers_py/bonds/_yields/current.py
src/fuggers_py/bonds/_yields/engine.py
src/fuggers_py/bonds/_yields/money_market.py
src/fuggers_py/bonds/_yields/short_date.py
src/fuggers_py/bonds/_yields/simple.py
src/fuggers_py/bonds/_yields/solver.py
src/fuggers_py/bonds/_yields/street.py
src/fuggers_py/bonds/_yields/true_yield.py
src/fuggers_py/bonds/cashflows/__init__.py
src/fuggers_py/bonds/cashflows/accrued.py
src/fuggers_py/bonds/cashflows/generator.py
src/fuggers_py/bonds/cashflows/irregular.py
src/fuggers_py/bonds/cashflows/schedule.py
src/fuggers_py/bonds/cashflows/settlement.py
src/fuggers_py/bonds/cashflows/settlement_analytics.py
src/fuggers_py/bonds/conventions/__init__.py
src/fuggers_py/bonds/conventions/bond_conventions.py
src/fuggers_py/bonds/conventions/eurobond.py
src/fuggers_py/bonds/conventions/german_bund.py
src/fuggers_py/bonds/conventions/japanese_jgb.py
src/fuggers_py/bonds/conventions/market.py
src/fuggers_py/bonds/conventions/registry.py
src/fuggers_py/bonds/conventions/uk_gilt.py
src/fuggers_py/bonds/conventions/us_corporate.py
src/fuggers_py/bonds/conventions/us_treasury.py
src/fuggers_py/bonds/instruments/__init__.py
src/fuggers_py/bonds/instruments/callable.py
src/fuggers_py/bonds/instruments/fixed.py
src/fuggers_py/bonds/instruments/floating_rate.py
src/fuggers_py/bonds/instruments/sinking_fund.py
src/fuggers_py/bonds/instruments/tips.py
src/fuggers_py/bonds/instruments/zero_coupon.py
src/fuggers_py/bonds/options/__init__.py
src/fuggers_py/bonds/options/binomial_tree.py
src/fuggers_py/bonds/options/bond_option.py
src/fuggers_py/bonds/options/errors.py
src/fuggers_py/bonds/options/models/__init__.py
src/fuggers_py/bonds/options/models/base.py
src/fuggers_py/bonds/options/models/hull_white.py
src/fuggers_py/bonds/rv/__init__.py
src/fuggers_py/bonds/rv/_fit_result.py
src/fuggers_py/bonds/rv/asw_basis_cds_links.py
src/fuggers_py/bonds/rv/basis_swapped_bonds.py
src/fuggers_py/bonds/rv/bond_switch.py
src/fuggers_py/bonds/rv/butterfly.py
src/fuggers_py/bonds/rv/global_bond_rv.py
src/fuggers_py/bonds/rv/neutrality.py
src/fuggers_py/bonds/rv/rich_cheap.py
src/fuggers_py/bonds/rv/selection.py
src/fuggers_py/bonds/rv/usd_sofr_yardstick.py
src/fuggers_py/bonds/rv/workflow.py
src/fuggers_py/bonds/traits/__init__.py
src/fuggers_py/bonds/traits/analytics.py
src/fuggers_py/bonds/traits/bond.py
src/fuggers_py/bonds/traits/cashflow.py
src/fuggers_py/bonds/traits/instruments.py
src/fuggers_py/bonds/types/__init__.py
src/fuggers_py/bonds/types/amortization.py
src/fuggers_py/bonds/types/asw.py
src/fuggers_py/bonds/types/bond_type.py
src/fuggers_py/bonds/types/compounding.py
src/fuggers_py/bonds/types/ex_dividend.py
src/fuggers_py/bonds/types/identifiers.py
src/fuggers_py/bonds/types/inflation.py
src/fuggers_py/bonds/types/issuer_type.py
src/fuggers_py/bonds/types/options.py
src/fuggers_py/bonds/types/price_quote.py
src/fuggers_py/bonds/types/rate_index.py
src/fuggers_py/bonds/types/rating.py
src/fuggers_py/bonds/types/sector.py
src/fuggers_py/bonds/types/seniority.py
src/fuggers_py/bonds/types/sofr_convention.py
src/fuggers_py/bonds/types/stub_rules.py
src/fuggers_py/bonds/types/yield_convention.py
src/fuggers_py/credit/__init__.py
src/fuggers_py/credit/analytics.py
src/fuggers_py/credit/instruments.py
src/fuggers_py/credit/pricing.py
src/fuggers_py/credit/quotes.py
src/fuggers_py/credit/reference_data.py
src/fuggers_py/credit/risk.py
src/fuggers_py/curves/__init__.py
src/fuggers_py/curves/_day_count.py
src/fuggers_py/curves/base.py
src/fuggers_py/curves/conversion.py
src/fuggers_py/curves/date_support.py
src/fuggers_py/curves/errors.py
src/fuggers_py/curves/movements.py
src/fuggers_py/curves/reports.py
src/fuggers_py/curves/spec.py
src/fuggers_py/curves/calibrators/__init__.py
src/fuggers_py/curves/calibrators/_quotes.py
src/fuggers_py/curves/calibrators/base.py
src/fuggers_py/curves/calibrators/bootstrap.py
src/fuggers_py/curves/calibrators/global_fit.py
src/fuggers_py/curves/kernels/__init__.py
src/fuggers_py/curves/kernels/base.py
src/fuggers_py/curves/kernels/composite.py
src/fuggers_py/curves/kernels/decorators.py
src/fuggers_py/curves/kernels/nodes.py
src/fuggers_py/curves/kernels/parametric.py
src/fuggers_py/curves/kernels/spline.py
src/fuggers_py/curves/multicurve/__init__.py
src/fuggers_py/curves/multicurve/index.py
src/fuggers_py/funding/__init__.py
src/fuggers_py/funding/analytics.py
src/fuggers_py/funding/products.py
src/fuggers_py/funding/quotes.py
src/fuggers_py/funding/reference_data.py
src/fuggers_py/inflation/__init__.py
src/fuggers_py/inflation/analytics.py
src/fuggers_py/inflation/conventions.py
src/fuggers_py/inflation/errors.py
src/fuggers_py/inflation/history.py
src/fuggers_py/inflation/pricing.py
src/fuggers_py/inflation/reference.py
src/fuggers_py/inflation/swaps.py
src/fuggers_py/portfolio/__init__.py
src/fuggers_py/portfolio/_analytics_utils.py
src/fuggers_py/portfolio/outputs.py
src/fuggers_py/portfolio/portfolio.py
src/fuggers_py/portfolio/results.py
src/fuggers_py/portfolio/analytics/__init__.py
src/fuggers_py/portfolio/analytics/base.py
src/fuggers_py/portfolio/analytics/credit.py
src/fuggers_py/portfolio/analytics/quote_outputs.py
src/fuggers_py/portfolio/analytics/summary.py
src/fuggers_py/portfolio/benchmark/__init__.py
src/fuggers_py/portfolio/benchmark/comparison.py
src/fuggers_py/portfolio/benchmark/tracking.py
src/fuggers_py/portfolio/bucketing/__init__.py
src/fuggers_py/portfolio/bucketing/custom.py
src/fuggers_py/portfolio/bucketing/maturity.py
src/fuggers_py/portfolio/bucketing/rating.py
src/fuggers_py/portfolio/bucketing/sector.py
src/fuggers_py/portfolio/contribution/__init__.py
src/fuggers_py/portfolio/contribution/attribution.py
src/fuggers_py/portfolio/contribution/risk.py
src/fuggers_py/portfolio/contribution/types.py
src/fuggers_py/portfolio/etf/__init__.py
src/fuggers_py/portfolio/etf/basket.py
src/fuggers_py/portfolio/etf/holding.py
src/fuggers_py/portfolio/etf/nav.py
src/fuggers_py/portfolio/etf/pricing.py
src/fuggers_py/portfolio/etf/sec.py
src/fuggers_py/portfolio/liquidity/__init__.py
src/fuggers_py/portfolio/risk/__init__.py
src/fuggers_py/portfolio/stress/__init__.py
src/fuggers_py/portfolio/stress/impact.py
src/fuggers_py/portfolio/stress/scenarios.py
src/fuggers_py/portfolio/types/__init__.py
src/fuggers_py/portfolio/types/cash.py
src/fuggers_py/portfolio/types/classification.py
src/fuggers_py/portfolio/types/config.py
src/fuggers_py/portfolio/types/holding.py
src/fuggers_py/portfolio/types/maturity.py
src/fuggers_py/portfolio/types/rating.py
src/fuggers_py/portfolio/types/sector.py
src/fuggers_py/portfolio/types/seniority.py
src/fuggers_py/portfolio/types/weighting.py
src/fuggers_py/rates/__init__.py
src/fuggers_py/rates/_curve_resolver.py
src/fuggers_py/rates/asset_swap.py
src/fuggers_py/rates/asset_swap_pricer.py
src/fuggers_py/rates/basis_swap.py
src/fuggers_py/rates/basis_swap_pricer.py
src/fuggers_py/rates/common.py
src/fuggers_py/rates/cross_currency_basis.py
src/fuggers_py/rates/cross_currency_basis_pricer.py
src/fuggers_py/rates/fixed_float_swap.py
src/fuggers_py/rates/fra.py
src/fuggers_py/rates/fra_pricer.py
src/fuggers_py/rates/indices.py
src/fuggers_py/rates/instruments.py
src/fuggers_py/rates/ois.py
src/fuggers_py/rates/pricing.py
src/fuggers_py/rates/products.py
src/fuggers_py/rates/quotes.py
src/fuggers_py/rates/reference_data.py
src/fuggers_py/rates/risk.py
src/fuggers_py/rates/risk_bpv.py
src/fuggers_py/rates/risk_key_rate.py
src/fuggers_py/rates/swap_pricer.py
src/fuggers_py/rates/futures/__init__.py
src/fuggers_py/rates/futures/basis.py
src/fuggers_py/rates/futures/conversion_factor.py
src/fuggers_py/rates/futures/ctd.py
src/fuggers_py/rates/futures/deliverable_basket.py
src/fuggers_py/rates/futures/delivery_option.py
src/fuggers_py/rates/futures/government_bond_future.py
src/fuggers_py/rates/futures/invoice.py
src/fuggers_py/rates/futures/oabpv.py
src/fuggers_py/rates/futures/reference.py
src/fuggers_py/rates/futures/delivery_option_models/__init__.py
src/fuggers_py/rates/futures/delivery_option_models/multi_factor.py
src/fuggers_py/rates/futures/delivery_option_models/one_factor.py
src/fuggers_py/rates/options/__init__.py
src/fuggers_py/rates/options/_pricing_common.py
src/fuggers_py/rates/options/_product_common.py
src/fuggers_py/rates/options/bachelier.py
src/fuggers_py/rates/options/black76.py
src/fuggers_py/rates/options/cap_floor.py
src/fuggers_py/rates/options/futures_option.py
src/fuggers_py/rates/options/greeks.py
src/fuggers_py/rates/options/hull_white.py
src/fuggers_py/rates/options/rv.py
src/fuggers_py/rates/options/swaption.py
src/fuggers_py/vol_surfaces/__init__.py
src/fuggers_py/vol_surfaces/sources.py
src/fuggers_py/vol_surfaces/surface.py
tests/README_add_feature_workflow.md
tests/__init__.py
tests/conftest.py
tests/contracts/__init__.py
tests/contracts/api/test_adapters_namespace_demoted.py
tests/contracts/api/test_bond_identity_alignment_public_api.py
tests/contracts/api/test_bonds_public_api_exports.py
tests/contracts/api/test_core_abstractions_public_api.py
tests/contracts/api/test_core_shared_language_public_api.py
tests/contracts/api/test_credit_public_api_exports.py
tests/contracts/api/test_curves_advanced_helpers_public_status.py
tests/contracts/api/test_curves_public_api_exports.py
tests/contracts/api/test_curves_rates_public_api_exports.py
tests/contracts/api/test_engine_public_api_exports.py
tests/contracts/api/test_first_layer_public_facades_phase1.py
tests/contracts/api/test_fitted_bond_optimizer_adapters_regressors_api.py
tests/contracts/api/test_fitted_bond_optional_regressors_api.py
tests/contracts/api/test_fitted_bond_par_breakeven_curves_api.py
tests/contracts/api/test_fitted_bond_tips_real_curve_api.py
tests/contracts/api/test_fitted_bond_zero_rate_spline_api.py
tests/contracts/api/test_funding_public_api_exports.py
tests/contracts/api/test_inflation_public_api_exports.py
tests/contracts/api/test_legacy_public_modules_absent.py
tests/contracts/api/test_market_quotes_public_api.py
tests/contracts/api/test_math_public_api.py
tests/contracts/api/test_optional_dependencies.py
tests/contracts/api/test_portfolio_public_api_exports.py
tests/contracts/api/test_public_api_surface.py
tests/contracts/api/test_public_api_type_hints.py
tests/contracts/api/test_rates_public_api_exports.py
tests/contracts/api/test_spreads_namespace_removed.py
tests/contracts/api/test_traits_public_api_exports.py
tests/contracts/api/test_unify_bond_quote_observation_api.py
tests/contracts/api/test_vol_surfaces_public_api_exports.py
tests/contracts/architecture/test_error_layout_policy.py
tests/contracts/architecture/test_final_architecture.py
tests/contracts/architecture/test_layer_boundaries.py
tests/contracts/architecture/test_portfolio_boundary.py
tests/contracts/docs/test_curves_and_surfaces_first_layer_docs.py
tests/contracts/docs/test_dev_internal_docs.py
tests/contracts/docs/test_docs_links.py
tests/contracts/docs/test_docs_smoke.py
tests/contracts/docs/test_domain_first_layer_docs.py
tests/contracts/docs/test_target_public_story_docs.py
tests/contracts/packaging/test_packaging_version_consistency.py
tests/contracts/tooling/test_add_feature_validator.py
tests/contracts/tooling/test_api_cleanliness_validator.py
tests/contracts/tooling/test_docs_coverage_validator.py
tests/contracts/tooling/test_public_api_surface_validator.py
tests/contracts/tooling/test_release_ruff_gate.py
tests/contracts/tooling/test_repo_hooks_router.py
tests/contracts/tooling/test_source_coverage_config.py
tests/fixtures/data/bonds.csv
tests/fixtures/data/curve_inputs.json
tests/fixtures/data/fixings.csv
tests/fixtures/data/quotes.csv
tests/fixtures/golden/validation_corpus.json
tests/fixtures/validation/bonds/accrued_interest.json
tests/fixtures/validation/bonds/callable.json
tests/fixtures/validation/bonds/fixed_rate.json
tests/fixtures/validation/bonds/floating_rate.json
tests/fixtures/validation/bonds/spreads.json
tests/fixtures/validation/curves/conversion.json
tests/fixtures/validation/curves/credit_curve.json
tests/fixtures/validation/curves/global_fit.json
tests/fixtures/validation/engine/reactive.json
tests/fixtures/validation/engine/scheduler.json
tests/fixtures/validation/portfolio/etf.json
tests/fixtures/validation/portfolio/portfolio.json
tests/helpers/__init__.py
tests/helpers/_add_feature_validator.py
tests/helpers/_engine_scenarios.py
tests/helpers/_fitted_bond_helpers.py
tests/helpers/_paths.py
tests/helpers/_portfolio_helpers.py
tests/helpers/_public_curve_helpers.py
tests/helpers/_rates_helpers.py
tests/integration/__init__.py
tests/integration/examples/test_core_abstractions_examples.py
tests/integration/examples/test_examples_refactor_policy.py
tests/integration/examples/test_examples_smoke.py
tests/integration/examples/test_treasury_curve_fit_example.py
tests/integration/properties/test_bond_identity_alignment_properties.py
tests/integration/properties/test_core_abstractions_properties.py
tests/integration/properties/test_property_invariants.py
tests/integration/properties/test_property_invariants_weak_modules.py
tests/integration/properties/test_validator_fast_checkpoints_properties.py
tests/integration/validation/__init__.py
tests/integration/validation/_helpers.py
tests/integration/validation/test_bond_identity_alignment_validation.py
tests/integration/validation/test_bonds_validation.py
tests/integration/validation/test_core_abstractions_validation.py
tests/integration/validation/test_curves_validation.py
tests/integration/validation/test_engine_validation.py
tests/integration/validation/test_golden_fixed_income_cases.py
tests/integration/validation/test_portfolio_attribution_validation.py
tests/integration/validation/test_portfolio_gap_validation.py
tests/integration/validation/test_portfolio_validation.py
tests/integration/validation/test_validation_corpus.py
tests/integration/validation/test_validator_fast_checkpoints_validation.py
tests/integration/workflows/test_bond_identity_alignment_workflow.py
tests/integration/workflows/test_inflation_end_to_end.py
tests/integration/workflows/test_research_workflow_end_to_end.py
tests/unit/__init__.py
tests/unit/adapters/test_ext_file.py
tests/unit/adapters/test_ext_json_codec.py
tests/unit/adapters/test_ext_portfolio_store.py
tests/unit/adapters/test_ext_sqlite_storage.py
tests/unit/adapters/test_traits_error.py
tests/unit/adapters/test_traits_storage.py
tests/unit/adapters/test_traits_transport.py
tests/unit/calc/test_bond_identity_alignment_router.py
tests/unit/calc/test_coverage_gap_engine.py
tests/unit/calc/test_engine_batch_pricing.py
tests/unit/calc/test_engine_builder.py
tests/unit/calc/test_engine_calc_graph.py
tests/unit/calc/test_engine_etf_pricing.py
tests/unit/calc/test_engine_integration_research.py
tests/unit/calc/test_engine_market_data_listener.py
tests/unit/calc/test_engine_portfolio_analytics.py
tests/unit/calc/test_engine_pricing_router_callable.py
tests/unit/calc/test_engine_pricing_router_failure_modes.py
tests/unit/calc/test_engine_pricing_router_fixed.py
tests/unit/calc/test_engine_pricing_router_floating_rate.py
tests/unit/calc/test_engine_reactive.py
tests/unit/calc/test_engine_scheduler.py
tests/unit/calc/test_numerical_hardening_engine.py
tests/unit/calc/test_numerical_hardening_engine_helpers.py
tests/unit/calc/test_traits_config.py
tests/unit/calc/test_traits_coordination.py
tests/unit/calc/test_traits_output.py
tests/unit/calc/test_traits_output_extended.py
tests/unit/calc/test_traits_output_publishers.py
tests/unit/calc/test_traits_pricing_specs.py
tests/unit/calc/test_traits_pricing_specs_extended.py
tests/unit/core/test_core_additional_coverage.py
tests/unit/core/test_core_calendars.py
tests/unit/core/test_core_daycounts.py
tests/unit/core/test_core_traits.py
tests/unit/core/test_core_types.py
tests/unit/core/test_numerical_hardening_core.py
tests/unit/core/test_traits_ids.py
tests/unit/core/test_traits_ids_extended.py
tests/unit/market/test_bonds_indices.py
tests/unit/market/test_bonds_indices_fixing_store.py
tests/unit/market/test_bonds_indices_overnight.py
tests/unit/market/test_curve_bump_math.py
tests/unit/market/test_curve_day_count.py
tests/unit/market/test_quotes_common_layer.py
tests/unit/market/test_rates_bootstrap_calibrator_unit.py
tests/unit/market/test_rates_bumped_curves_unit.py
tests/unit/market/test_rates_global_fit_calibrator_unit.py
tests/unit/market/test_rates_node_kernels_unit.py
tests/unit/market/test_rates_parametric_kernels_unit.py
tests/unit/market/test_rates_quote_normalization_unit.py
tests/unit/market/test_rates_spline_kernels_unit.py
tests/unit/market/test_rates_term_structure_ontology_unit.py
tests/unit/market/test_traits_market_data.py
tests/unit/market/test_traits_market_data_extended.py
tests/unit/math/test_math_errors.py
tests/unit/math/test_math_extrapolation.py
tests/unit/math/test_math_interpolation.py
tests/unit/math/test_math_linear_algebra.py
tests/unit/math/test_math_numerical.py
tests/unit/math/test_math_optimization.py
tests/unit/math/test_math_solvers.py
tests/unit/measures/test_analytics_cashflows_settlement.py
tests/unit/measures/test_analytics_discount_margin.py
tests/unit/measures/test_analytics_functions.py
tests/unit/measures/test_analytics_key_rate_duration.py
tests/unit/measures/test_analytics_oas.py
tests/unit/measures/test_analytics_pricing.py
tests/unit/measures/test_analytics_reference_rates.py
tests/unit/measures/test_analytics_risk.py
tests/unit/measures/test_analytics_rv_basis_swapped_bonds.py
tests/unit/measures/test_analytics_rv_butterfly.py
tests/unit/measures/test_analytics_rv_rich_cheap.py
tests/unit/measures/test_analytics_rv_usd_sofr_yardstick.py
tests/unit/measures/test_analytics_rv_workflow.py
tests/unit/measures/test_analytics_spread_duration.py
tests/unit/measures/test_analytics_spreads.py
tests/unit/measures/test_analytics_yas.py
tests/unit/measures/test_analytics_yields_additional.py
tests/unit/measures/test_analytics_yields_basic.py
tests/unit/measures/test_analytics_yields_engine.py
tests/unit/measures/test_coverage_gap_analytics_bonds.py
tests/unit/measures/test_credit_adjusted_cds.py
tests/unit/measures/test_credit_bond_cds_basis.py
tests/unit/measures/test_funding_haircuts.py
tests/unit/measures/test_funding_implied_repo.py
tests/unit/measures/test_funding_repo.py
tests/unit/measures/test_funding_specialness.py
tests/unit/measures/test_inflation_analytics.py
tests/unit/measures/test_numerical_hardening_spreads.py
tests/unit/measures/test_numerical_hardening_var_hedging.py
tests/unit/measures/test_numerical_hardening_yield_helpers.py
tests/unit/measures/test_spread_adjustments.py
tests/unit/measures/test_spread_adjustments_overlays.py
tests/unit/portfolio/test_coverage_gap_portfolio.py
tests/unit/portfolio/test_numerical_hardening_portfolio.py
tests/unit/portfolio/test_numerical_hardening_portfolio_contribution_tracking.py
tests/unit/portfolio/test_portfolio_analytics.py
tests/unit/portfolio/test_portfolio_analytics_summary.py
tests/unit/portfolio/test_portfolio_attribution_decomposition.py
tests/unit/portfolio/test_portfolio_benchmark.py
tests/unit/portfolio/test_portfolio_bucketing.py
tests/unit/portfolio/test_portfolio_contribution.py
tests/unit/portfolio/test_portfolio_credit.py
tests/unit/portfolio/test_portfolio_etf_basket_surface.py
tests/unit/portfolio/test_portfolio_gap_surface.py
tests/unit/portfolio/test_portfolio_key_rates.py
tests/unit/portfolio/test_portfolio_metric_integrity.py
tests/unit/portfolio/test_portfolio_stress.py
tests/unit/portfolio/test_portfolio_surface_smoke.py
tests/unit/portfolio/test_portfolio_typed_public_metrics.py
tests/unit/portfolio/test_portfolio_types.py
tests/unit/portfolio/test_portfolio_wrapper_coverage.py
tests/unit/pricers/test_bonds_options.py
tests/unit/pricers/test_bonds_puts_and_options.py
tests/unit/pricers/test_bonds_risk.py
tests/unit/pricers/test_bonds_yield_engine.py
tests/unit/pricers/test_credit_cds.py
tests/unit/pricers/test_credit_cds_reference_date.py
tests/unit/pricers/test_numerical_hardening_bonds.py
tests/unit/pricers/test_rates_asset_swaps.py
tests/unit/pricers/test_rates_asset_swaps_breakdown.py
tests/unit/pricers/test_rates_basis_swaps.py
tests/unit/pricers/test_rates_cross_currency_basis.py
tests/unit/pricers/test_rates_fra.py
tests/unit/pricers/test_rates_futures_basis.py
tests/unit/pricers/test_rates_futures_conversion_factor.py
tests/unit/pricers/test_rates_futures_ctd.py
tests/unit/pricers/test_rates_futures_delivery_option_models.py
tests/unit/pricers/test_rates_futures_oabpv.py
tests/unit/pricers/test_rates_options_bachelier.py
tests/unit/pricers/test_rates_options_black76.py
tests/unit/pricers/test_rates_options_cap_floor.py
tests/unit/pricers/test_rates_options_greeks.py
tests/unit/pricers/test_rates_risk.py
tests/unit/pricers/test_rates_swaps.py
tests/unit/pricers/test_standard_coupon_inflation_swap.py
tests/unit/pricers/test_tips_pricing.py
tests/unit/pricers/test_tips_risk.py
tests/unit/pricers/test_zero_coupon_inflation_swap.py
tests/unit/products/test_bond_identity_alignment.py
tests/unit/products/test_bonds_accrued.py
tests/unit/products/test_bonds_callable.py
tests/unit/products/test_bonds_callable_edge_cases.py
tests/unit/products/test_bonds_callable_puttable.py
tests/unit/products/test_bonds_floating_rate.py
tests/unit/products/test_bonds_floating_rate_reference_date.py
tests/unit/products/test_bonds_schedule.py
tests/unit/products/test_bonds_sinking_fund.py
tests/unit/products/test_bonds_traits_bond.py
tests/unit/products/test_core_abstractions_unit.py
tests/unit/products/test_non_bond_instrument_adoption.py
tests/unit/products/test_rates_futures_contracts.py
tests/unit/products/test_tips_instrument.py
tests/unit/reference/test_bonds_calendar_id.py
tests/unit/reference/test_bonds_identifiers.py
tests/unit/reference/test_bonds_types_additional_coverage.py
tests/unit/reference/test_bonds_yield_rules_presets.py
tests/unit/reference/test_inflation_cpi_parsers.py
tests/unit/reference/test_inflation_reference_index.py
tests/unit/reference/test_inflation_treasury_auction_data.py
tests/unit/reference/test_traits_reference_data.py
tests/unit/reference/test_traits_reference_data_extended.py
tests/unit/reference/test_traits_reference_sources.py
tests/unit/tooling/test_validator_fast_checkpoints.py
tools/codex_hooks.py
tools/repo_hooks.py
tools/run_release_ruff.py
tools/source_coverage.py
tools/update_public_api_surface.py
tools/validate_add_feature.py
tools/validate_api_cleanliness.py
tools/validate_docs_coverage.py
tools/validate_public_api_surface.py
tools/packaging/smoke_imports.py
tools/packaging/smoke_optional_with_engine.py
tools/packaging/smoke_optional_without_engine.py
typecheck/public_api.py