I have the two events: A and B. Everytime A occurs, B have to occur afterwards without any As in between. Has anybody got an idea, how to implement this? I thought about something like
pattern[every A -> A until B]
But this statement is true, even if A is followed B without any other As in between. But it should only be true in case of AAB or AAAAB and so on..
Thank you for your help.
One possible solution is the pattern
Doing so the query is only true, when the rule is violated. But if it is fulfilled, I don't get any hint. Is there a better solution?