DESCR 1017 B

1234567891011121314151617181920
  1. MiniSat is a minimalistic, open-source Boolean satisfiability problem
  2. (SAT) solver, developed to help researchers and developers alike to get
  3. started on SAT.
  4. Some key features of MiniSat:
  5. * Easy to modify. MiniSat is small and well-documented, and possibly
  6. also well-designed, making it an ideal starting point for adapting SAT
  7. based techniques to domain specific problems.
  8. * Highly efficient. Winning all the industrial categories of the SAT
  9. 2005 competition, MiniSat is a good starting point both for future
  10. research in SAT, and for applications using SAT.
  11. * Designed for integration. MiniSat supports incremental SAT and has
  12. mechanisms for adding non-clausal constraints. By virtue of being easy
  13. to modify, it is a good choice for integrating as a backend to another
  14. tool, such as a model checker or a more generic constraint solver.
  15. The OpenBSD package of MiniSAT installs two binaries:
  16. minisat = A core version of the solver.
  17. minisats = An extended solver with simplification capabilities.