You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the validator sums up the branch probabilities, it looks up probability properties when a transition is in a component error behavior, but not an error behavior state machine. The following model is valid, but the validator complains anyway:
package branch_probabilities
public
annex EMV2 {**
error behavior machine1
events
error1: error event;
states
state1: initial state;
state2: state;
state3: state;
transitions
transition2: state1 -[error1]-> (state2 with my_set::my_real, state3 with my_set::my_real);
properties
my_set::my_real => 0.5;
end behavior;
**};
end branch_probabilities;
The validator complains that the probabilities don't sum up to 1.
The text was updated successfully, but these errors were encountered:
When the validator sums up the branch probabilities, it looks up probability properties when a transition is in a component error behavior, but not an error behavior state machine. The following model is valid, but the validator complains anyway:
The validator complains that the probabilities don't sum up to 1.
The text was updated successfully, but these errors were encountered: