NetLogo two agentsets operations

≡放荡痞女 提交于 2019-12-29 07:34:26

问题


I have two agentsets. Are there functions for finding:

  1. An agentset of agents that are present in both (intersection)
  2. An agentset of agents that are present in one and not the other

I'm finding it very difficult to implement this by hand, especially when it's needed inside of a triple ask

Ideal use would be similar to with syntax:

let cross set1 and-in set2
let uniq set1 with [color = red] not-in set2

Simple things like "Is agent A in the agentset X?" are problematic


回答1:


For the first one you use the turtle-set primitive. For the second one you need the member? primitive, which also works on agentsets. As such:

to setup
  ca
  create-turtles 10 [set color red]
  create-turtles 10 [set color blue]
  let red-ones turtles with [color = red]
  let blue-ones turtles with [color = blue]

  ;join 2 agent sets
  let joinset (turtle-set red-ones blue-ones)
  show joinset

  let even-ones (turtles with [who mod 2 = 0])
  ;subtract even-ones from red-ones
  let subtractset red-ones with [not member? self even-ones]
  show subtractset
end


来源:https://stackoverflow.com/questions/8425518/netlogo-two-agentsets-operations

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!