OBSERVER AUTOMATON ParserTestingAutomaton
// This Automaton is written to test the Parser of the ObserverAnalysis
// it does not matter with which other CPAs and on which sourcecode file this automaton is run

INITIAL STATE Init;

STATE USEFIRST Init :
  //!(FALSE == TRUE) -> GOTO Init;
  (TRUE && !TRUE) -> GOTO Init;
  TRUE -> ERROR;

END AUTOMATON
