summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaQbf.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-10-25 17:55:35 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-10-25 17:55:35 -0700
commitb8556e7edf263b266e3028901c276f925be5f470 (patch)
tree9ff69af2c757a283a7341fbb8eb36c530eaef2ae /src/aig/gia/giaQbf.c
parentf93ede121d01fe98bd3616b058ab226ea69b7c4f (diff)
downloadabc-b8556e7edf263b266e3028901c276f925be5f470.tar.gz
abc-b8556e7edf263b266e3028901c276f925be5f470.tar.bz2
abc-b8556e7edf263b266e3028901c276f925be5f470.zip
New command &satenum to enumerate SAT assignments of a miter in a naive way.
Diffstat (limited to 'src/aig/gia/giaQbf.c')
-rw-r--r--src/aig/gia/giaQbf.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/aig/gia/giaQbf.c b/src/aig/gia/giaQbf.c
index 7de3d587..a14ec443 100644
--- a/src/aig/gia/giaQbf.c
+++ b/src/aig/gia/giaQbf.c
@@ -56,6 +56,65 @@ extern Cnf_Dat_t * Mf_ManGenerateCnf( Gia_Man_t * pGia, int nLutSize, int fCnfOb
/**Function*************************************************************
+ Synopsis [Naive way to enumerate SAT assignments.]
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+int Gia_ManSatEnum( Gia_Man_t * pGia, int nConfLimit, int nTimeOut, int fVerbose )
+{
+ Cnf_Dat_t * pCnf;
+ sat_solver * pSat;
+ Vec_Int_t * vLits;
+ int i, iLit, iParVarBeg, Iter;
+ int nSolutions = 0, RetValue = 0;
+ abctime clkStart = Abc_Clock();
+ pCnf = Mf_ManGenerateCnf( pGia, 8, 0, 1, 0 );
+ pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 );
+ iParVarBeg = pCnf->nVars - Gia_ManPiNum(pGia) - 1;
+ Cnf_DataFree( pCnf );
+ // iterate through the SAT assignment
+ vLits = Vec_IntAlloc( Gia_ManPiNum(pGia) );
+ for ( Iter = 1 ; ; Iter++ )
+ {
+ int status = sat_solver_solve( pSat, NULL, NULL, (ABC_INT64_T)nConfLimit, 0, 0, 0 );
+ if ( status == l_False ) { RetValue = 1; break; }
+ if ( status == l_Undef ) { RetValue = 0; break; }
+ nSolutions++;
+ // extract SAT assignment
+ Vec_IntClear( vLits );
+ for ( i = 0; i < Gia_ManPiNum(pGia); i++ )
+ Vec_IntPush( vLits, Abc_Var2Lit(iParVarBeg+i, sat_solver_var_value(pSat, iParVarBeg+i)) );
+ if ( fVerbose )
+ {
+ printf( "%5d : ", Iter );
+ Vec_IntForEachEntry( vLits, iLit, i )
+ printf( "%d", !Abc_LitIsCompl(iLit) );
+ printf( "\n" );
+ }
+ // add clause
+ if ( !sat_solver_addclause( pSat, Vec_IntArray(vLits), Vec_IntArray(vLits) + Vec_IntSize(vLits) ) )
+ { RetValue = 1; break; }
+ if ( nTimeOut && (Abc_Clock() - clkStart)/CLOCKS_PER_SEC >= nTimeOut ) { RetValue = 0; break; }
+ }
+ sat_solver_delete( pSat );
+ Vec_IntFree( vLits );
+ if ( nTimeOut && (Abc_Clock() - clkStart)/CLOCKS_PER_SEC >= nTimeOut )
+ printf( "Enumerated %d assignments when timeout (%d sec) was reached. ", nSolutions, nTimeOut );
+ else if ( nConfLimit && !RetValue )
+ printf( "Enumerated %d assignments when conflict limit (%d) was reached. ", nSolutions, nConfLimit );
+ else
+ printf( "Enumerated the complete set of %d assignments. ", nSolutions );
+ Abc_PrintTime( 1, "Time", Abc_Clock() - clkStart );
+ return RetValue;
+}
+
+/**Function*************************************************************
+
Synopsis [Dumps the original problem in QDIMACS format.]
Description []