algorithm - Tabu Search如何用于解决Traveling Purchaser

标签 algorithm np-hard tabu-search

经常看到Tabu Search是用来解决traveling purchase/traveling salesman的,想研究一下,但是总是搞不清楚进度和停止条件,谁能解释一下这是怎么回事可以实现吗?

最佳答案

停止条件通常是给出解决它的时间。

进步是像2-opt (TailChainSwapMove)这样的 Action , relocate (ChainedChangeMove) , swap (ChainedSwapMove) , 子链变更/交换, ...

这些 Action 应用于典型的本地搜索 - 更具体地说是禁忌搜索 - 时尚:

Tabu Search OptaPlanner

关于algorithm - Tabu Search如何用于解决Traveling Purchaser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32024911/

相关文章:

algorithm - 你用过旅行商算法来解决问题吗?

algorithm - 来自数字数组的表达式

algorithm - 在处理 Tabu Search Optimization 时,当所有相邻解决方案都是 tabu 时,通常的做法是什么?

python - 解决这个难题的最佳算法是什么?

python - 用 Python 实现了广度优先搜索算法。不知道如何返回解决方案

sql - 编辑累积平均评级

algorithm - Numberlink/Flow 游戏 : How to spot NP-Complete problems?

artificial-intelligence - 用启发式方法解决数独问题 : a good idea?

r - 在 R 中实现禁忌搜索

algorithm - 删除 O(1) 中的最大值并插入 O(logn)