mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-17 08:42:16 +00:00
Fixes and improvements in ezSAT library
This commit is contained in:
parent
c681c17038
commit
25ae2d4df0
5 changed files with 202 additions and 10 deletions
|
@ -5,10 +5,11 @@ CXXFLAGS = -MD -Wall -Wextra -ggdb
|
|||
CXXFLAGS += -std=c++11 -O0
|
||||
LDLIBS = -lminisat -lstdc++
|
||||
|
||||
all: demo_vec demo_bit testbench puzzle3d
|
||||
all: demo_vec demo_bit demo_cmp testbench puzzle3d
|
||||
|
||||
demo_vec: demo_vec.o ezsat.o ezminisat.o
|
||||
demo_bit: demo_bit.o ezsat.o ezminisat.o
|
||||
demo_cmp: demo_cmp.o ezsat.o ezminisat.o
|
||||
testbench: testbench.o ezsat.o ezminisat.o
|
||||
puzzle3d: puzzle3d.o ezsat.o ezminisat.o
|
||||
|
||||
|
@ -16,6 +17,7 @@ test: all
|
|||
./testbench
|
||||
./demo_bit
|
||||
./demo_vec
|
||||
./demo_cmp
|
||||
|
||||
clean:
|
||||
rm -f demo_bit demo_vec testbench puzzle3d *.o *.d
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue