Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 779 Bytes

File metadata and controls

23 lines (15 loc) · 779 Bytes

Implementation of Discernable Trajectory Error (DTE) Algorithm

Paper

Environment

Running Python scripts

When running Python scripts in this repository, please use the uv run command rather than invoking python directly. The project uses uv to provide the configured runtime and task orchestration.

Examples:

uv run dte.py
uv run ./scripts/application.py

If you frequently run Python directly, you can add an optional shell alias (local to your machine) to map python to uv run:

alias python='uv run'

Note: Adding the alias is optional — it affects your interactive shell only. Prefer using uv run explicitly in CI and shared automation so behavior is reproducible for all contributors.