NS 2.34 的 um-olsr 中存在错误?

发布于 2024-10-02 19:35:45 字数 342 浏览 2 评论 0原文

我认为 OLSR:: Degree() 方法有一个错误:

该方法计算节点 y 的对称邻居的数量,排除 N 的所有成员。

我认为

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->nb_main_addr());

应该是

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->2_hop_addr());

我说得对吗?

I think there is a bug in OLSR::degree() method:

This method calculates the number of symmetric neighbors of node y, EXCLUDING all the members of N.

I think

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->nb_main_addr());

should be

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->2_hop_addr());

Am I right?

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

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

发布评论

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

评论(2

西瓜 2024-10-09 19:35:45

是的,朋友,你是对的。这是一个错误。正确的行是:

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->2_hop_addr());

Yes friend, you're right. this is a bug. The correct line is:

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->2_hop_addr());
乜一 2024-10-09 19:35:45

我正在使用 UM-OLSR 版本 0.8.8 并且你们提供的修复无法编译,修复 UM-OLSR 版本 0.8.8 中的错误的正确方法是:

OLSR_nb_tuple* nb_tuple =
state_.find_nb_tuple(nb2hop_tuple->nb2hop_addr());

i'm using UM-OLSR version 0.8.8 and the fix you guys gave did not compile, the correct way to fix the bug in UM-OLSR version 0.8.8 is:

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