Skip to content

Commit e7cd9a3

Browse files
authored
Merge pull request #378 from MyskYko/kissat
Kissat
2 parents c25bf73 + 3f61711 commit e7cd9a3

File tree

211 files changed

+39273
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+39273
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ MODULES := \
2828
src/opt/cut src/opt/fxu src/opt/fxch src/opt/rwr src/opt/mfs src/opt/sim \
2929
src/opt/ret src/opt/fret src/opt/res src/opt/lpk src/opt/nwk src/opt/rwt src/opt/rar \
3030
src/opt/cgt src/opt/csw src/opt/dar src/opt/dau src/opt/dsc src/opt/sfm src/opt/sbd \
31-
src/sat/bsat src/sat/xsat src/sat/satoko src/sat/csat src/sat/msat src/sat/psat src/sat/cnf src/sat/bmc src/sat/glucose src/sat/glucose2 \
31+
src/sat/bsat src/sat/xsat src/sat/satoko src/sat/csat src/sat/msat src/sat/psat src/sat/cnf src/sat/bmc src/sat/glucose src/sat/glucose2 src/sat/kissat \
3232
src/bool/bdc src/bool/deco src/bool/dec src/bool/kit src/bool/lucky \
3333
src/bool/rsb src/bool/rpo \
3434
src/proof/pdr src/proof/abs src/proof/live src/proof/ssc src/proof/int \

abclib.dsp

Lines changed: 368 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/base/abci/abc.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56001,6 +56001,11 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
5600156001
goto usage;
5600256002
}
5600356003
}
56004+
56005+
extern void kissat_solver_test();
56006+
kissat_solver_test();
56007+
return 0;
56008+
5600456009
if ( pAbc->pGia == NULL )
5600556010
{
5600656011
Abc_Print( -1, "Abc_CommandAbc9Test(): There is no AIG.\n" );

0 commit comments

Comments
 (0)