Initial progress on subsumption DFA. Why is this branch called subsumption-tree?

This commit is contained in:
gothictomato
2022-07-21 10:56:05 -04:00
parent 1d938273f3
commit 8e34675408
6 changed files with 448 additions and 2 deletions

View File

@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.22)
project(psat C)
set(CMAKE_C_STANDARD 99)
# set(CMAKE_C_FLAGS "-O3")
set(CMAKE_C_FLAGS "-g")
add_executable(psat main.c cnf.c cnf.h time.c time.h types.h gpusolver.c gpusolver.h cpusolver.c cpusolver.h tests/masterTest.c tests/masterTest.h)
add_executable(psat main.c cnf.c cnf.h time.c time.h types.h gpusolver.c gpusolver.h cpusolver.c cpusolver.h tests/masterTest.c tests/masterTest.h subtree.c subtree.h ncnf.c ncnf.h)
target_link_libraries(psat -lOpenCL)