mirror of
https://github.com/YosysHQ/yosys
synced 2026-02-22 00:07:38 +00:00
Merge pull request #4303 from Coloquinte/sat_choice
Infrastructure to run a Sat solver as a command
This commit is contained in:
commit
8ab105ac28
13 changed files with 320 additions and 18 deletions
2
Makefile
2
Makefile
|
|
@ -638,6 +638,7 @@ $(eval $(call add_include_file,kernel/yosys_common.h))
|
|||
$(eval $(call add_include_file,kernel/yw.h))
|
||||
$(eval $(call add_include_file,libs/ezsat/ezsat.h))
|
||||
$(eval $(call add_include_file,libs/ezsat/ezminisat.h))
|
||||
$(eval $(call add_include_file,libs/ezsat/ezcmdline.h))
|
||||
ifeq ($(ENABLE_ZLIB),1)
|
||||
$(eval $(call add_include_file,libs/fst/fstapi.h))
|
||||
endif
|
||||
|
|
@ -683,6 +684,7 @@ OBJS += libs/json11/json11.o
|
|||
|
||||
OBJS += libs/ezsat/ezsat.o
|
||||
OBJS += libs/ezsat/ezminisat.o
|
||||
OBJS += libs/ezsat/ezcmdline.o
|
||||
|
||||
OBJS += libs/minisat/Options.o
|
||||
OBJS += libs/minisat/SimpSolver.o
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue