I have an agentset named giant-component, and I set all the agents' color to red:
ask giant-component [
set color red
ask my-links [
set color red
]
]
Now I need to set all other turtles' color to blue. I know that the easy trick would be to first set all turtles' color to blue, and then colour all the giant component to red, but during the simulation it may get confusing for the user to see it. Is there a way to get all the turtles that are not inside giant-component?