mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-22 17:11:14 +00:00
5a60c1ee2c
- Create core/factor_graph.py: IFactorGraphOptimizer converted to Protocol
- Shim core/graph.py to re-export from core/factor_graph
- Create pipeline/ package: orchestrator, image_input, result_manager, sse_streamer
- Shim core/{processor,pipeline,results,sse}.py to re-export from pipeline/
- Create testing/benchmark.py; shim core/benchmark.py
- Convert IRouteChunkManager, IFailureRecoveryCoordinator, IModelManager, IImageMatcher to Protocol
- Update pyproject.toml ruff per-file-ignores to new paths
- All 216 tests pass (regression floor maintained)
9 lines
259 B
Python
9 lines
259 B
Python
"""Legacy import path. Phase 1 shim — code lives in testing/benchmark.py."""
|
|
from gps_denied.testing.benchmark import ( # noqa: F401
|
|
AccuracyBenchmark,
|
|
BenchmarkResult,
|
|
SyntheticTrajectory,
|
|
SyntheticTrajectoryConfig,
|
|
TrajectoryFrame,
|
|
)
|