2016-02-04 52 views
1

我想找到滿足一定條件的貼劑,使用下面的命令:打印元件在一個agentset

print patches with [ (closest-party = turtle 1) and (distance < 10)] 

給這個作爲結果:(agentset,7個補丁)

怎麼辦我發現那個代理組內的7個補丁

回答

2

如果myset是代理組,則[self] of myset將是代理列表。

let myset patches with [ (closest-party = turtle 1) and (distance < 10)] print [self] of myset 

但通常你可以只使用myset。例如,

ask myset [print self] 
+0

非常感謝。欣賞快速反應 – Yuvaraj