I'm simulating a model on Anylogic, composed by 4 blocks: source-queue-service-sink.
I have 3 classes of priority (low, medium, high) with which I have to organize the "priority-based" queue. So:
- the 70% of the agents must be associated to the "high";
- the 20% of the agents to the "medium";
- the 10% of the agents to the "low".
And the queue should work like this: highs first, then mediums and lows at the end.
How can I do this? Should I work with arrays maybe?
