修改项目结构

This commit is contained in:
YuhangQ 2023-03-26 19:15:17 +08:00
parent b5e59ff1fe
commit a9b0ae0f00
994 changed files with 87057 additions and 137 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

View File

@ -1,5 +1,22 @@
cd /home/chenzh/solvers/Light/solvers/kissat-inc;
./configure && make;
cd ..;
cd ..;
make clean; make;
#!/bin/bash
COMPILE_THREADS=16
# build kissat
cd kissat-inc
./configure
make -j $COMPILE_THREADS
cd ..
# build and copy light-solver
make -C src-light-solver -j $COMPILE_THREADS
cp src-light-solver/build/light-solver .
# build and copy light-master
make -C src-light-master -j $COMPILE_THREADS
cp src-light-master/build/light-master .

View File

@ -1,5 +0,0 @@
p PRS 4 1
kissat tier1=2 chrono=1
kissat target=0 tier1=3
kissat phase=1
kissat stable=1 target=2 phase=1

17
kissat-inc/makefile Normal file
View File

@ -0,0 +1,17 @@
all:
$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build"
kissat:
$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build" kissat
tissat:
$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build" tissat
clean:
rm -f "/home/qianyh/projects/Light/kissat-inc"/makefile
-$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build" clean
rm -rf "/home/qianyh/projects/Light/kissat-inc/build"
coverage:
$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build" coverage
indent:
$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build" indent
test:
$(MAKE) -C "/home/qianyh/projects/Light/kissat-inc/build" test
.PHONY: all clean coverage indent kissat test tissat

Some files were not shown because too many files have changed in this diff Show More