fix truth table variable order
This commit is contained in:
parent
550e589bc8
commit
eb965050f3
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ enumerate keys = map reverse $ aux start
|
|||
Nothing -> []
|
||||
Just (assignments') -> aux assignments'
|
||||
|
||||
start = map (, False) keys
|
||||
start = map (, False) $ reverse keys
|
||||
|
||||
next [] = Nothing
|
||||
next ((key, False):rest) = Just $ (key, True):rest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue