I'm trying to create a valid CTL or LTL expression for model checking in NuSMV.
I have a variable in a game, with actors running around trying to catch each other. Variable is, State_Of_Game : {Win,Lose,Playing}
and I want to express that from every starting state the game can be both won or lost.
So, how would I implement this in CTL or LTL?
I was thinking something like AG (S_O_G = Win | S_O_G = Lose) but don't know how to implement that it is seen from every starting state.