You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/base/abci/abc.c
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -51291,7 +51291,7 @@ int Abc_CommandAbc9Qbf( Abc_Frame_t * pAbc, int argc, char ** argv )
51291
51291
{
51292
51292
extern void Gia_QbfDumpFile( Gia_Man_t * pGia, int nPars );
51293
51293
extern void Gia_QbfDumpFileInv( Gia_Man_t * pGia, int nPars );
51294
-
extern int Gia_QbfSolve( Gia_Man_t * pGia, int nPars, int nIterLimit, int nConfLimit, int nTimeOut, int nEncVars, int fGlucose, int fVerbose );
51294
+
extern int Gia_QbfSolve( Gia_Man_t * pGia, int nPars, int nIterLimit, int nConfLimit, int nTimeOut, int nEncVars, int fGlucose, int fCadical, int fVerbose );
51295
51295
int c, nPars = -1;
51296
51296
int nIterLimit = 0;
51297
51297
int nConfLimit = 0;
@@ -51300,9 +51300,10 @@ int Abc_CommandAbc9Qbf( Abc_Frame_t * pAbc, int argc, char ** argv )
51300
51300
int fDumpCnf = 0;
51301
51301
int fDumpCnf2 = 0;
51302
51302
int fGlucose = 0;
51303
+
int fCadical = 0;
51303
51304
int fVerbose = 0;
51304
51305
Extra_UtilGetoptReset();
51305
-
while ( ( c = Extra_UtilGetopt( argc, argv, "PICTKdegvh" ) ) != EOF )
51306
+
while ( ( c = Extra_UtilGetopt( argc, argv, "PICTKdegcvh" ) ) != EOF )
51306
51307
{
51307
51308
switch ( c )
51308
51309
{
@@ -51370,6 +51371,9 @@ int Abc_CommandAbc9Qbf( Abc_Frame_t * pAbc, int argc, char ** argv )
51370
51371
case 'g':
51371
51372
fGlucose ^= 1;
51372
51373
break;
51374
+
case 'c':
51375
+
fCadical ^= 1;
51376
+
break;
51373
51377
case 'v':
51374
51378
fVerbose ^= 1;
51375
51379
break;
@@ -51404,11 +51408,11 @@ int Abc_CommandAbc9Qbf( Abc_Frame_t * pAbc, int argc, char ** argv )
0 commit comments