Initial commit: OptimizR - High-performance optimization algorithms in Rust with Python bindings

This commit is contained in:
Melvin Avarez
2025-12-03 18:16:48 +01:00
commit 923d27e87b
31 changed files with 7466 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
"""
OptimizR - High-Performance Optimization Algorithms
===================================================
Fast, reliable implementations of advanced optimization and statistical
inference algorithms with Rust acceleration and pure Python fallbacks.
.. moduleauthor:: OptimizR Contributors
"""
from optimizr.hmm import HMM
from optimizr.core import (
mcmc_sample,
differential_evolution,
grid_search,
mutual_information,
shannon_entropy,
)
__version__ = "0.1.0"
__all__ = [
"HMM",
"mcmc_sample",
"differential_evolution",
"grid_search",
"mutual_information",
"shannon_entropy",
]