Why doesn't UPPAAL try to take all the paths? #276
-
Beta Was this translation helpful? Give feedback.
Answered by
mikucionisaau
Jun 12, 2024
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Lqs66
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uppaal initializes all variables with
0
unless it has a special range or initializer.That's because integer variables are treated as part of a discrete state, it does not have an abstract interpretation engine.
Also such treatment would automatically result in much bigger state spaces than most people expect.
If you want a non-deterministic initalization, then you need to model it with non-deterministic edges.