Created
November 13, 2013 20:58
-
-
Save 5outh/7456295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
not :: Expr -> Expr | |
not (Not e) = e | |
not (And e1 e2) = Or (not e1) (not e2) | |
not (Or e1 e2) = And (not e1) (not e2) | |
not (SubExpr e) = not e | |
not (Var c) = Not (Var c) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment