Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pure Haskell AIGER and CNF generation #8

Merged
merged 10 commits into from
Jun 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions aig.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ library
exposed-modules:
Data.AIG
Data.AIG.AddTree
Data.AIG.CompactGraph
Data.AIG.Interface
Data.AIG.Operations
Data.AIG.Trace
Expand All @@ -36,6 +37,9 @@ library
ghc-options: -Wall -fno-ignore-asserts
build-depends:
base >= 4.9 && < 4.16,
binary,
binary-parsers,
bytestring,
containers >= 0.5.5,
mtl,
vector,
Expand All @@ -50,12 +54,16 @@ test-suite aig-test

main-is: aig-test.hs
other-modules:
Tests.FileIO
Tests.Operations

build-depends:
base == 4.*,
aig,
bytestring,
directory,
tasty < 1.5,
tasty-hunit,
tasty-ant-xml,
tasty-quickcheck >= 0.8.1,
QuickCheck >= 2.7
Loading