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
Currently, the code inside BinaryAlgorithm::toST(...) has a bug in it - when the algorithm is T->T, F->F (z := z), it is erroneously displayed as z := NOT z.
Currently, the code inside
BinaryAlgorithm::toST(...)
has a bug in it - when the algorithm isT->T, F->F
(z := z
), it is erroneously displayed asz := NOT z
.fbSAT/fbsat-core/src/main/kotlin/ru/ifmo/fbsat/core/automaton/Algorithm.kt
Lines 35 to 47 in 13450c4
The correct behavior is to display such algorithms as
z := z
or, as we convert to ST, not to display them at all, asz := z
is a no-op.The text was updated successfully, but these errors were encountered: