微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

海龟在网络中选择路径

如何解决海龟在网络中选择路径

我在建模方面很新,正在使用 Netlogo,我已经创建了与我称为 bstations 的海龟品种的链接。我想要做的是让海龟(人)移动到一个中间站,只有它是人想要去的 b站的链接邻居。

 ask persons with [ starting_station = ["Station 4"]] ;;these 

[ let currentstation bstations-here
   let availabledestinations nobody
   ask currentstation [ set availabledestinations link-neighbors ]
        let destination nobody
    ask availabledestinations [ if link-neighbors = bstations with [link-neighbors = bstations with [label = "Station 4"]] [ set destination self ]] *;; this is the code line that i am trying but it does not seem to work*
    if destination != nobody [ move-to destination] ]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。