one-of
randomly selects an agent from the agentset and with
creates an agentset of those agents satisfying the condition. You will also need to test that there is at least one location to go to. The selection would look like this (with threshold condition to be determined):
to move-up ; a turtle procedure
let candidates neighbors with [elevation >= <thresholdhold condition> ]
if any? candidates [ move-to one-of candidates]
end
If you are instead wanting to choose amongst the higher neighbours regardless of whether they are higher than some threshold, you want max-n-of
. Looks like this to choose one of the 3 highest:
to move-up
move-to one-of max-n-of 3 neighbors [elevation]
end
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…