I am kind of new to timed automata and I have a question related to their correctness and synchronisation.
Assume that I have three states, A, B and C. I have also two clocks, $x$ and $y$ that are global clocks. Once $x$ (resp. $y$) becomes greater than a given value $VALUE\_1$ (resp. $VALUE\_2$) then a transition to state $B$ (resp. $C$) becomes possible, with a probability of $P(A,C)$ (resp. $P(A,B)$). My question is: is it correct? What can we do if $VALUE_1 = VALUE_2$ and $P(A,B) = P(A,C)$? If it is not correct, how may I fix this? Thanks a lot.