@@ -16,21 +16,21 @@ This repository implements an end-to-end short-rate derivatives platform centere
1616
1717``` text
1818.
19- ├── .github/workflows/build.yml # Cross-platform wheel build and invariant test pipeline
20- ├── .streamlit/ # Streamlit Cloud configuration and secret template
21- ├── cpp_core/
22- │ ├── include/ # Typed C++ public interfaces
23- │ └── src/ # C++17 implementation and pybind11 bindings
24- ├── python_layer/
25- │ ├── data_io.py # FRED API + DuckDB market-data ingestion
26- │ ├── ray_orchestrator.py # Stateless distributed pricing orchestration
27- │ ├── grpc_service.py # Async gRPC pricing service
28- │ └── xlwings_udf.py # Excel UDF integration
29- ├── tests/test_invariants.py # Mathematical verification suite
30- ├── app.py # Streamlit dashboard
31- ├── CMakeLists.txt # Native build definition
32- ├── pyproject.toml # PEP 517 wheel build configuration
33- └── requirements.txt # Runtime, dashboard, and CI dependencies
19+ |-- .github/workflows/build.yml # Cross-platform wheel build and invariant test pipeline
20+ |-- .streamlit/ # Streamlit Cloud configuration and secret template
21+ |-- cpp_core/
22+ | |-- include/ # Typed C++ public interfaces
23+ | `-- src/ # C++17 implementation and pybind11 bindings
24+ |-- python_layer/
25+ | |-- data_io.py # FRED API + DuckDB market-data ingestion
26+ | |-- ray_orchestrator.py # Stateless distributed pricing orchestration
27+ | |-- grpc_service.py # Async gRPC pricing service
28+ | `-- xlwings_udf.py # Excel UDF integration
29+ |-- tests/test_invariants.py # Mathematical verification suite
30+ |-- app.py # Streamlit dashboard
31+ |-- CMakeLists.txt # Native build definition
32+ |-- pyproject.toml # PEP 517 wheel build configuration
33+ `-- requirements.txt # Runtime, dashboard, and CI dependencies
3434```
3535
3636## Quantitative Model
0 commit comments