禁忌搜索示例问题

发布于 2024-11-15 02:48:30 字数 1009 浏览 4 评论 0原文

您能帮我理解这个禁忌搜索页 7例子:

TS是一种数学优化方法, 属于轨迹类 为基础的技术。禁忌搜索增强 本地搜索的性能 方法通过使用内存结构 描述访问过的解决方案:一次 潜在的解决方案是 确定后,将其标记为“禁忌” (“禁忌”是不同的拼写 同一个词)使得算法 不访问这种可能性 反复。禁忌搜索归因 致弗雷德·W·格洛弗

在此输入图像描述 在此处输入图像描述 在此处输入图像描述 在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

在此处输入图像描述

我不明白为什么使用上三角形,为什么是这样的:

禁忌结构现在表明 交换模块4的位置 5 禁止进行 3 次迭代。 这一步进步最大的一步 是将 3 和 1 交换以获得 2 的增益。

您能解释一下为什么是三角形以及为什么是上面的说法吗?

在此处输入图像描述???

Could you please help me understand this Tabu search page 7 example:

TS is a mathematical optimization method,
belonging to the class of trajectory
based techniques. Tabu search enhances
the performance of a local search
method by using memory structures that
describe the visited solutions: once a
potential solution has been
determined, it is marked as "taboo"
("tabu" being a different spelling of
the same word) so that the algorithm
does not visit that possibility
repeatedly. Tabu search is attributed
to Fred W. Glover

enter image description here
enter image description here
enter image description here
enter image description here
enter image description here
enter image description here

enter image description here

I do not understand why an upper triangle is used, and why is this :

The tabu structure now shows that
swapping the positions of modules 4
and 5 is forbidden for 3 iterations.
The most improving move at this step
is to swap 3 and 1 for a gain of 2.

Could you please explain why the triangle and why is it the above statement?

enter image description here???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

病女 2024-11-22 02:48:30

声明

在幻灯片示例中,他们选择了 3 的持续时间。每次进行一次交换时,接下来的 3 次移动都将成为禁忌。

这就是为什么在第 1 步(注意:我从第 0 步开始)有以下语句:

禁忌结构现在表明
交换模块4的位置
5 禁止进行 3 次迭代。
这一步进步最大的一步
是将 3 和 1 交换以获得 2 的增益。

在这一步交换 3 和 1 是增加价值的最佳举措。

在你的最后一步(步骤 3)之后,他们实际上交换了 4 和 5,即使由于愿望标准而这是禁忌。 (20 > 18,这是迄今为止最好的值)。

三角形

表示形式是三角形,因为交换操作是对称的。因此,您只需要一个上三角形即可表示您的禁忌结构。

在禁忌结构的每个单元中,您都有 (x,y) = (y,x) 对的剩余任期(移动成为禁忌的剩余持续时间)。

我对禁忌搜索不太了解,但希望对您有所帮助。

The statement

In the exemple of the powerpoint they chose a duration of 3. Each time one swap is made it will be tabu for the next 3 moves.

That's why at step 1 (note: I start at step 0) you have the following statement:

The tabu structure now shows that
swapping the positions of modules 4
and 5 is forbidden for 3 iterations.
The most improving move at this step
is to swap 3 and 1 for a gain of 2.

Swapping 3 and 1 at this step is the best move to increase value.

After your last step (step 3) they actually swap 4 and 5 even if it is tabu because of the aspiration criterion. (20 > 18 which is best value so far).

The triangle

The representation is a triangle because the swapping manipulation is symetric. So you don't need more than an upper triangle to represent your tabu structure.

In each cell of the tabu structure you have the remaining tenure (the duration left for the move to be tabu) of the pair (x,y) = (y,x).

I don't know much about tabu search, but I hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文