packages feed

incremental-sat-solver-0.1: incremental-sat-solver.cabal

Name:          incremental-sat-solver
Version:       0.1
Cabal-Version: >= 1.6
Synopsis:      Simple, Incremental SAT Solving as a Library
Description:   This Haskell library provides an implementation of the
               Davis-Putnam-Logemann-Loveland algorithm
               (cf. <http://en.wikipedia.org/wiki/DPLL_algorithm>) for
               the boolean satisfiability problem. It not only allows
               to solve boolean formulas in one go but also to add
               constraints and query bindings of variables
               incrementally.
Category:      Algorithms
License:       BSD3
License-File:  LICENSE
Author:        Sebastian Fischer
Maintainer:    sebf@informatik.uni-kiel.de
Bug-Reports:   mailto:sebf@informatik.uni-kiel.de
Homepage:      http://github.com/sebfisch/incremental-sat-solver
Build-Type:    Simple
Stability:     experimental

Extra-Source-Files: README

Library
  Build-Depends:    base, containers, mtl
  Exposed-Modules:  Data.Boolean.SatSolver
  Other-Modules:    Data.Boolean
  Ghc-Options:      -Wall

Source-Repository head
  type:     git
  location: git://github.com/sebfisch/incremental-sat-solver.git