Skip to content

Commit

Permalink
CDCL refactor (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruhn authored Apr 14, 2023
1 parent 7ca130e commit 48fbdfb
Show file tree
Hide file tree
Showing 12 changed files with 321 additions and 423 deletions.
23 changes: 13 additions & 10 deletions SMT.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ maintainer: niklas@gruhn.me
extra-source-files: CHANGELOG.md

library
exposed-modules: CLI
, Expression
exposed-modules: Expression
, Assignment
, CNF
, Algorithm.LinearResolution
, Algorithm.DPLL
-- , Algorithm.CDCL
, Algorithm.CDCL2
, SAT.DPLL
, SAT.CDCL
, Theory
, Theory.Propositions
, Theory.BitVectors
, Theory.UninterpretedFunctions.Lazy
, Theory.UninterpretedFunctions.Eager
Expand Down Expand Up @@ -41,17 +40,21 @@ library
, vector
hs-source-dirs: src
default-language: Haskell2010
default-extensions: ScopedTypeVariables
, LambdaCase
, StrictData
, TupleSections
default-extensions:
ScopedTypeVariables
, LambdaCase
, StrictData
, TupleSections
, MultiParamTypeClasses
, FunctionalDependencies

test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: GameUnequal
, TestNonLinearRealArithmatic
, TestLinearArithmatic
, TestSAT
build-depends: base
, SMT
, hedgehog
Expand Down
183 changes: 0 additions & 183 deletions src/Algorithm/CDCL.hs

This file was deleted.

Loading

0 comments on commit 48fbdfb

Please sign in to comment.