3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-07 03:31:24 +00:00

Added libs/minisat (copy of minisat git master)

This commit is contained in:
Clifford Wolf 2014-03-12 10:17:51 +01:00
parent 9087ece97c
commit 94c1307c26
28 changed files with 5025 additions and 28 deletions

View file

@ -28,8 +28,13 @@
#include <csignal>
#include <cinttypes>
#include <minisat/core/Solver.h>
#include <minisat/simp/SimpSolver.h>
#ifdef _YOSYS_
# include "libs/minisat/Solver.h"
# include "libs/minisat/SimpSolver.h"
#else
# include <minisat/core/Solver.h>
# include <minisat/simp/SimpSolver.h>
#endif
ezMiniSAT::ezMiniSAT() : minisatSolver(NULL)
{