""" TSPTW Solver 模塊 對外公開接口: - TSPTWSolver: 主求解器類 使用方式(完全保持向後兼容): ```python from src.optimization import TSPTWSolver solver = TSPTWSolver() result = solver.solve( tasks=[...], start_location={"lat": 25.0330, "lng": 121.5654}, start_time=datetime.now(), deadline=datetime.now() + timedelta(hours=6), ) print(result["status"]) # "OK", "NO_SOLUTION", "NO_TASKS" print(result["route"]) print(result["tasks_detail"]) ``` """ from .tsptw_solver import TSPTWSolver __all__ = ["TSPTWSolver"]