I got the error message:
MEMBER? expected input to be a string or list or agentset but got the number 0 instead.
during running following NetLogo Code:
to find-flockmates ;; turtle reporter
;; latch on to the nearby birds
set flockmates-infront other birds in-cone vision cone-infront-degree
set flockmates-sidewise other birds in-cone vision cone-sidewise-degree
;; agentset substraction
if (count flockmates-infront > 0)[
set flockmates-sidewise (flockmates-sidewise with [not member? self flockmates-infront])
]
end
Can someone tell me what I am doing wrong or another possible solution for a substraction of two agentsets?
show flockmates-infrontto see if it's ever set to anything but an agentset? (As far as I can tell, it shouldn't. It could benobodybut yourifwould take care of that.) – Nicolas Payette Dec 15 '12 at 18:49