如何在以下声明中引用邻居海龟?
if count(turtles-on patch-ahead -1) with [(target-speed) > (target-speed)] > 0
我想将邻居龟的速度与自己的速度进行比较。
答案 0 :(得分:1)
而不是count agentset > 0
,请尝试any? agentset
您想使用[target-speed] of myself
所以,把它放在一起。
if any? turtles-on patch-ahead -1 with [target-speed > [target-speed] of myself]