-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
Not really usable as a fully fledged SMT solver right now. | ||
Mainly just a collection of the various algorithms used in SMT solvers, implemented in Haskell: | ||
Mainly just a collection of various algorithms used in SMT solvers, implemented in Haskell: | ||
|
||
* SAT solving | ||
* [x] [Davis–Putnam–Logemann–Loveland (DPLL)](/src/SAT/DPLL.hs) | ||
* [x] [Conflict Driven Clause Learning (CDCL)](/src/SAT/CDCL.hs) | ||
* [Davis–Putnam–Logemann–Loveland (DPLL)](/src/SAT/DPLL.hs) | ||
* [Conflict Driven Clause Learning (CDCL)](/src/SAT/CDCL.hs) | ||
* Uninterpreted Functions | ||
* [x] [Congruence Closure](/src/Theory/UninterpretedFunctions.hs) | ||
* [Congruence Closure](/src/Theory/UninterpretedFunctions.hs) | ||
* Linear Arithmatic | ||
* [x] [Simplex Method](/src/Theory/LinearArithmatic/Simplex.hs) | ||
* [x] [Fourier-Motzkin](/src/Theory/LinearArithmatic/FourierMotzkin.hs) | ||
* [x] [Branch and Bound](/src/Theory/LinearArithmatic/FourierMotzkin.hs) | ||
* [Simplex Method](/src/Theory/LinearArithmatic/Simplex.hs) | ||
* [Fourier-Motzkin](/src/Theory/LinearArithmatic/FourierMotzkin.hs) | ||
* [Branch and Bound](/src/Theory/LinearArithmatic/BranchAndBound.hs) | ||
* Non-Linear Arithmatic | ||
* [ ] [Interval Constraint Propagation](/src/Theory/NonLinearArithmatic/IntervalConstraintPropagation.hs) | ||
* [ ] [Subtropical Satisfiability](/src/Theory/NonLinearArithmatic/Subtropical.hs) | ||
* [ ] [Cylindtrical Algebraic Decomposition](/src/Theory/NonLinearArithmatic/CAD.hs) | ||
* [ ] Virtual Substitution | ||
* [Interval Constraint Propagation](/src/Theory/NonLinearRealArithmatic/IntervalConstraintPropagation.hs) | ||
* [Subtropical Satisfiability](/src/Theory/NonLinearRealArithmatic/Subtropical.hs) | ||
* [Cylindtrical Algebraic Decomposition](/src/Theory/NonLinearRealArithmatic/CAD.hs) | ||
* Virtual Substitution | ||
|