File size: 644 Bytes
0336663
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
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',
]