| """ |
| Morpho-Logic Engine (MLE) - Adaptive Learning System |
| |
| A high-dimensional sparse distributed memory system with energy-based dynamics, |
| optimized for CPU performance with bit-slicing SIMD operations. |
| """ |
|
|
| from .memory import SparseAddressTable, VECTOR_SIZE |
| from .routing import HammingRouter |
| from .binding import CircularBinder |
| from .energy import EnergyLandscape |
| from .inference import InferenceEngine, InferenceResult |
| from .mle_system import MLESystem |
|
|
| __all__ = [ |
| 'SparseAddressTable', |
| 'HammingRouter', |
| 'CircularBinder', |
| 'EnergyLandscape', |
| 'InferenceEngine', |
| 'InferenceResult', |
| 'MLESystem', |
| 'VECTOR_SIZE', |
| ] |