Architecture Overview
Reenka is built on a strictly deterministic physics engine designed to replicate and analyze failure modes in autonomous systems.
# Example: Running a simple analysis
import
reenkascenario = reenka.Scenario(
robot_speed=1.4,
sensor_range=2.0
)
result = reenka.analyze(scenario)
print(result.root_cause)
The Engine.py Boundary
The core logic resides within api/engine.py. This module is protected and must remain deterministic. Agents are not permitted to mutate this physics sandbox without explicit approval.