3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-08-09 23:51:08 +00:00
yosys/libs/ezsat
2026-08-05 12:57:56 +02:00
..
.gitignore
CMakeLists.txt Migrate build system to CMake 2026-06-03 08:58:10 +00:00
demo_bit.cc
demo_cmp.cc
demo_vec.cc
ezcmdline.cc Migrate build system to CMake 2026-06-03 08:58:10 +00:00
ezcmdline.h ezsat: Rename files and class for ezCmdlineSat 2026-01-20 07:54:50 -08:00
ezminisat.cc ezsat add propagation budget api. 2026-08-05 12:57:56 +02:00
ezminisat.h
ezsat.cc ezsat add propagation budget api. 2026-08-05 12:57:56 +02:00
ezsat.h ezsat add propagation budget api. 2026-08-05 12:57:56 +02:00
Makefile
puzzle3d.cc
puzzle3d.scad
README
testbench.cc

  **************************************************************************
  *                                                                        *
  *                       The ezSAT C++11 library                          *
  *                                                                        *
  * A simple frontend to SAT solvers with bindings to MiniSAT.             *
  *                                                   by Claire Xenia Wolf *
  *                                                                        *
  **************************************************************************

============
Introduction
============

This library acts as a frontend to SAT solvers and a helper for generating
CNF for sat solvers. It comes with bindings for MiniSAT (http://minisat.se/).

Have a look at demo_bit.cc and demo_vec.cc for examples of how to set up
a SAT problem using ezSAT. Have a look at puzzle3d.cc for a more complex
(real-world) example of using ezSAT.


C++11 Warning
-------------

This project is written in C++11. Use appropriate compiler switches to compile
it. Tested with clang version 3.0 and option -std=c++11. Also tested with gcc
version 4.6.3 and option -std=c++0x.