I got an Automaton below by Breakpoint construction:
labels 0:s0,s1; 1:s1,s2; 2:s3; 3:s3; 4:s0; 5:; // encode Q
labels 0:; 1:s2; 2:; 3:s3; 4:; 5:; // encode Qf
init 0;
transitions (0,{},,1); (0,{a},,3); (1,{},,3); (1,{a},,2); (2,{},,4); (2,{a},,3); (3,{a},,3); (3,{},,4); (4,{},,1); (4,{a},,5); (5,{a},,5); (5,{},,5);
accept 1,3;
As a type of Automaton, system accepted "FG". But, I would consider it as "GF". Because F holds infinitely often, but not always after sometime. Also, there is a state 5, which is not F state, but system my reach here and be here always after sometime. This also creates doubts. Could you please describe why my Automaton is "FG"?
Is the definition in Wiki is correct https://en.wikipedia.org/wiki/Co-B%C3%BCchi_automaton?