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
thanks for reaching out! Yes, you're right. The string "~b" should be accepted. This is a bug (a nice viz is here). Now, I don't have much time to look into it, but I'll try to do so asap.
I am not sure this is wrong after all:
The formula WX(a) <-> b is equivelant to (WX(a) & b) | !(WX a) & ~b) which in NNF would correspond to (WX(a) & b) | (X ~a) & ~b) per the rules in slide 32 here. In that case, I am thinking about this bottom up instead of top down as the compilation done here, it does make sense. Which begs the question what is the formula used to encode the desired behavior which is (WX a & b) | (WX ~a) & ~b). Which per the rules is not equivalent to WX(a) <-> b. Don't know if this makes sense?
Hi many thanks for the tool.
I am trying to convert the formula (WX(a) <-> b) for which the automaton is this:
Shouldn't the string "~b", i.e. not b be accepted here? Am I missing something?
Thanks
The text was updated successfully, but these errors were encountered: