REPOSITORY
ontariotech/path-optimization Private
[참조 MVP] 농작업 경로 최적화 A-SW — 작업 구간을 최근접 휴리스틱으로 재정렬해 공차 이동거리를 줄입니다.
https://git.agrithing.ai/ontariotech/path-optimization.git 31e9d33 feat: adopt python SERVICE SDV reference implementation
9a8e645 feat: adopt python SERVICE SDV reference implementation
78244d2 ci: add language-specific static and dynamic analysis
3e39860 docs: define component scope and interface contract
511863b ci: verify contract tests and evidence package
de87e68 feat: add executable reference MVP
fe5cc8b docs: define component scope and interface contract
12 items · main
.asw directory → .gitea directory → asw_component directory → contracts directory → examples directory → release directory → tests directory → tools directory → NOTICE.md 178 B → pyproject.toml 231 B → README.md 2.2 KB → run.py 352 B →
·/ run.py
python · 352 B · 6ce1446 Download
from __future__ import annotationsimport jsonimport sysfrom asw_component import executeif __name__ == "__main__": path = sys.argv[1] if len(sys.argv) > 1 else None with open(path, encoding="utf-8") if path else sys.stdin as source: payload = json.load(source) print(json.dumps(execute(payload), ensure_ascii=False, indent=2))