菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-05-20
📄 Abstract - COAgents: Multi-Agent Framework to Learn and Navigate Routing Problems Search Space

Although Vehicle Routing Problems (VRP) are essential to many real-world systems, they remain computationally intractable at scale due to their combinatorial complexity. Traditional heuristics rely on handcrafted rules for local improvements and occasional \textit{jumps} to escape local minima, but often struggle to generalize across diverse instances. We introduce \textbf{COAgents}, a cooperative multi-agent framework that models the search process as a graph: nodes represent solutions, and edges correspond to either local refinements or large perturbations for diversification (i.e., jumps). A \textit{Partial Search Graph} (PSG) is dynamically constructed during search, enabling COAgents to train a Node Selection Agent and a Move Selection Agent to guide intensification, and a Jump Agent to trigger well-timed explorations of new regions. Unlike end-to-end learning approaches, COAgents cleanly separates problem-agnostic search control from compact domain-specific encoding, facilitating adaptability across tasks. Extensive experiments on the CVRP and VRPTW benchmarks show that COAgents remains competitive with several learn-to-search baselines on CVRP and sets a new state of the art among learning-based methods on the more challenging VRPTW instances, reducing the gap to the best-known solutions by 14\% at $N\!=\!100$ and 44\% at $N\!=\!50$ relative to the strongest neural solver (POMO), and by 21\% and 40\% respectively relative to ALNS. Code is available at this https URL.

顶级标签: agents machine learning reinforcement learning
详细标签: vehicle routing multi-agent search graph combinatorial optimization heuristics 或 搜索:

COAgents:用于学习和导航路径规划问题搜索空间的多智能体框架 / COAgents: Multi-Agent Framework to Learn and Navigate Routing Problems Search Space


1️⃣ 一句话总结

本文提出了一种名为COAgents的多智能体协作框架,通过将搜索过程建模为图,并训练多个智能体分别负责局部改进、跳跃探索和节点选择,从而更高效地解决车辆路径规划问题,在多个基准测试上取得了领先性能。

源自 arXiv: 2605.20618