packages feed

leancheck-0.7.0: tests/diff/eg/test-bool.out

not . not === id
+++ OK, passed 2 tests (exhausted).
(&&) commutes
+++ OK, passed 4 tests (exhausted).
(||) commutes
+++ OK, passed 4 tests (exhausted).

All boolean operators are commutative (wrong).
*** Failed! Falsifiable (after 10 tests):
\x y -> case (x,y) of
          (False,False) -> False
          (False,True) -> False
          (True,False) -> True
          (True,True) -> False
False
True


All boolean operators are associative (wrong).
*** Failed! Falsifiable (after 22 tests):
\x y -> case (x,y) of
          (False,False) -> False
          (False,True) -> False
          (True,False) -> True
          (True,True) -> False
True
False
True