NS 2.34 的 um-olsr 中存在错误?
我认为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,朋友,你是对的。这是一个错误。正确的行是:
Yes friend, you're right. this is a bug. The correct line is:
我正在使用 UM-OLSR 版本 0.8.8 并且你们提供的修复无法编译,修复 UM-OLSR 版本 0.8.8 中的错误的正确方法是:
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: