I'm setting up a model with a number of agents who are connected via links as follows:
ask turtles [create-links-with turtles in-radius vision with [self != myself]]
But I want to be able to limit the number of connections that an individual agent can make. I've tried a few things but to no avail.
Hope you can help.
You can get a randomly selected subset of turtles to link to using the
n-of
primitive like this:However, you will need to do something a bit trickier if you want a firm upper limit because this doesn't stop other turtles from creating links to the same turtle(s). If you want a fixed number of links (5 in example below), you can do this:
If you simply want an upper limit, you could ask any turtles with my-links > limit to randomly select the appropriate number of links to delete. So, after creating links, something like this (not tested):