I have a NetLogo model, simplified to this:
to setup
clear-all
create-turtles 1000 [
fd 100
]
end
When I add a monitor widget to the UI, with a reporter like mean [xcor] of turtles
and then run setup
, the values in the monitor change a slight bit constantly. It might show 0.2305090322262271
one moment then 0.2305090322262268
the next, and then another similar number on and on.
What is making my monitor widget flicker or flash like this? How can I prevent it?