REPOSITORY
ontariotech/task-allocation Private
[참조 MVP] 다중 농기계 작업 배분 A-SW — 농기계 용량을 고려해 작업구역을 예상 완료시간이 최소가 되도록 배분합니다.
https://git.agrithing.ai/ontariotech/task-allocation.git e513f8a feat: adopt python SERVICE SDV reference implementation
9619a21 feat: adopt python SERVICE SDV reference implementation
9089584 ci: add language-specific static and dynamic analysis
3bf8432 docs: define component scope and interface contract
8da6f7a ci: verify contract tests and evidence package
9d1acf5 feat: add executable reference MVP
9a07d04 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 239 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))