Search code examples
algorithmhaskellbooleanboolean-expressionboolean-operations

Quine–McCluskey algorithm in haskell


I found the Quine–McCluskey algorithm implemented in Haskell, but I don't know what I have to do to load it in GHCi. Can someone help me out?

http://dilawarnotes.wordpress.com/2012/09/05/quine-mcclusky-algorithm-in-haskell/

https://github.com/dilawar/ee677/tree/master/Assignment01/haskell


Solution

  • Download Quine.lhs and tingu.hs and then run ghci Quine.lhs tingu.hs. This will load the modules Quine and Main that you can then use from GHCi.