修改项目结构
This commit is contained in:
parent
643e083409
commit
c168c7a8dd
.gitignorebuild.shconfigure.txt
kissat-inc
CONTRIBUTINGLICENSEREADME.mdVERSIONconfiguremakefilemakefile.in
scripts
build-and-test-all-configurations.shdetermine-coverage.shfilter-coverage-output.shgenerate-build-header.shmake-source-release.shprepare-competition.shreplace-terminated.sh
src
.gdbinitallocate.callocate.hanalyze.canalyze.hands.cands.happlication.capplication.harena.carena.hassign.cassign.hautarky.cautarky.haverages.caverages.hbacktrack.cbacktrack.hbackward.cbackward.hbig.cnfbuild.cbump.cbump.hcheck.ccheck.hclause.cclause.hclueue.cclueue.hcollect.ccollect.hcolors.ccolors.hcompact.ccompact.hconfig.cconfig.hconfigurecover.hcvec.ccvec.hdecide.cdecide.hdeduce.cdeduce.hdense.cdense.hdominate.cdominate.hdump.celiminate.celiminate.hendianess.hequivalences.cequivalences.herror.cerror.hextend.cextend.hfailed.cfailed.hfile.cfile.hflags.cflags.hformat.cformat.hforward.cforward.hframes.cframes.hgates.cgates.hhandle.chandle.hheap.cheap.hifthenelse.cifthenelse.himport.cimport.h
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
build
|
27
build.sh
27
build.sh
@ -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 .
|
@ -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
17
kissat-inc/makefile
Normal 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
|
0
solvers/kissat-inc/scripts/filter-coverage-output.sh → kissat-inc/scripts/filter-coverage-output.sh
0
solvers/kissat-inc/scripts/filter-coverage-output.sh → kissat-inc/scripts/filter-coverage-output.sh
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user