feat: add point_processes module implementing unified theory framework

This commit is contained in:
ThotDjehuty
2026-02-19 19:01:29 +01:00
parent fc8a8d036e
commit f7e62cbe6d
8 changed files with 2338 additions and 0 deletions
+4
View File
@@ -45,6 +45,7 @@ pub mod optimal_control;
pub mod risk_metrics;
pub mod sparse_optimization;
pub mod mean_field; // Mean Field Games and Mean Field Type Control
pub mod point_processes; // Point processes for order flow modeling (Hawkes, fBM)
// Python bindings for legacy compatibility
#[cfg(feature = "python-bindings")]
@@ -115,6 +116,9 @@ fn _core(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> {
// Mean Field Games functions
mean_field::python_bindings::register_python_functions(m)?;
// Point Processes functions (Hawkes, fBM, order flow)
point_processes::python_bindings::register_python_functions(m)?;
// Optimal Control functions (includes Kalman Filter)
optimal_control::py_bindings::register_py_module(m)?;