Hello, I'm trying to run a model, and the generator needs three conditions, but it seems that only one gets considered.
The condition is the same as one listed in the examples:
Random((vertex_coverage(100) and reached_vertex(myVertex)) or time_duration(90))
What happens is that it stops immediately at the reached vertex, ignoring the other conditions.
Any other combination of just 2 of those conditions seems to work correctly, but when I add a third one, only the reached vertex seems to be considered, no matter in which order I place the conditions, or if I use the text "or" and "and" or the operators "||" and "&&".