Commit 3119e1e3 by Alan Mishchenko

Adding features for invariant minimization.

parent cf1106ab
...@@ -681,7 +681,7 @@ int Abc_CommandInvCheck( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -681,7 +681,7 @@ int Abc_CommandInvCheck( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( nFailed ) if ( nFailed )
printf( "Invariant verification failed for %d clauses (out of %d).\n", nFailed, Vec_IntEntry(Wlc_AbcGetInv(pAbc),0) ); printf( "Invariant verification failed for %d clauses (out of %d).\n", nFailed, Vec_IntEntry(Wlc_AbcGetInv(pAbc),0) );
else else
printf( "Invariant verification passes.\n" ); printf( "Invariant verification succeeded.\n" );
return 0; return 0;
usage: usage:
Abc_Print( -2, "usage: inv_check [-vh]\n" ); Abc_Print( -2, "usage: inv_check [-vh]\n" );
......
...@@ -691,20 +691,17 @@ void Pdr_InvPrint( Vec_Int_t * vInv, int fVerbose ) ...@@ -691,20 +691,17 @@ void Pdr_InvPrint( Vec_Int_t * vInv, int fVerbose )
} }
} }
int Pdr_InvCheck( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) int Pdr_InvCheck_int( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose, sat_solver * pSat )
{ {
int nBTLimit = 0; int nBTLimit = 0;
int i, k, status, nFailed = 0; int fCheckProperty = 1;
// create SAT solver int i, k, status, nFailed = 0, nFailedOuts = 0;
Cnf_Dat_t * pCnf = Mf_ManGenerateCnf( p, 8, 0, 0, 0 );
sat_solver * pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 );
// collect cubes // collect cubes
int * pCube, * pList = Vec_IntArray(vInv); int * pCube, * pList = Vec_IntArray(vInv);
// create variables // create variables
Vec_Int_t * vLits = Vec_IntAlloc(100); Vec_Int_t * vLits = Vec_IntAlloc(100);
int iFoVarBeg = pCnf->nVars - Gia_ManRegNum(p); int iFoVarBeg = sat_solver_nvars(pSat) - Gia_ManRegNum(p);
int iFiVarBeg = 1 + Gia_ManPoNum(p); int iFiVarBeg = 1 + Gia_ManPoNum(p);
assert( Gia_ManPoNum(p) == 1 );
// add cubes // add cubes
Pdr_ForEachCube( pList, pCube, i ) Pdr_ForEachCube( pList, pCube, i )
{ {
...@@ -713,10 +710,34 @@ int Pdr_InvCheck( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) ...@@ -713,10 +710,34 @@ int Pdr_InvCheck( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
for ( k = 0; k < pCube[0]; k++ ) for ( k = 0; k < pCube[0]; k++ )
if ( pCube[k+1] != -1 ) if ( pCube[k+1] != -1 )
Vec_IntPush( vLits, Abc_Var2Lit(iFoVarBeg + Abc_Lit2Var(pCube[k+1]), !Abc_LitIsCompl(pCube[k+1])) ); Vec_IntPush( vLits, Abc_Var2Lit(iFoVarBeg + Abc_Lit2Var(pCube[k+1]), !Abc_LitIsCompl(pCube[k+1])) );
if ( Vec_IntSize(vLits) == 0 )
{
Vec_IntFree( vLits );
return 1;
}
// add it to the solver // add it to the solver
status = sat_solver_addclause( pSat, Vec_IntArray(vLits), Vec_IntLimit(vLits) ); status = sat_solver_addclause( pSat, Vec_IntArray(vLits), Vec_IntLimit(vLits) );
assert( status == 1 ); assert( status == 1 );
} }
// verify property output
if ( fCheckProperty )
{
for ( i = 0; i < Gia_ManPoNum(p); i++ )
{
Vec_IntFill( vLits, 1, Abc_Var2Lit(1+i, 0) );
status = sat_solver_solve( pSat, Vec_IntArray(vLits), Vec_IntLimit(vLits), nBTLimit, 0, 0, 0 );
if ( status == l_Undef ) // timeout
break;
if ( status == l_True ) // sat - property fails
{
if ( fVerbose )
printf( "Coverage check failed for output %d.\n", i );
nFailedOuts++;
continue;
}
assert( status == l_False ); // unsat - property holds
}
}
// iterate through cubes in the direct order // iterate through cubes in the direct order
Pdr_ForEachCube( pList, pCube, i ) Pdr_ForEachCube( pList, pCube, i )
{ {
...@@ -735,12 +756,22 @@ int Pdr_InvCheck( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) ...@@ -735,12 +756,22 @@ int Pdr_InvCheck( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
assert( status == l_True ); assert( status == l_True );
nFailed++; nFailed++;
if ( fVerbose ) if ( fVerbose )
printf( "Verification failed for clause %d.\n", i ); printf( "Inductiveness check failed for clause %d.\n", i );
} }
Vec_IntFree( vLits );
return nFailed + nFailedOuts;
}
int Pdr_InvCheck( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
{
int RetValue;
Cnf_Dat_t * pCnf = Mf_ManGenerateCnf( p, 8, 0, 0, 0 );
sat_solver * pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 );
assert( sat_solver_nvars(pSat) == pCnf->nVars );
Cnf_DataFree( pCnf ); Cnf_DataFree( pCnf );
RetValue = Pdr_InvCheck_int( p, vInv, fVerbose, pSat );
sat_solver_delete( pSat ); sat_solver_delete( pSat );
Vec_IntFree( vLits ); return RetValue;
return nFailed;
} }
Vec_Int_t * Pdr_InvMinimize( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) Vec_Int_t * Pdr_InvMinimize( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
...@@ -760,8 +791,8 @@ Vec_Int_t * Pdr_InvMinimize( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) ...@@ -760,8 +791,8 @@ Vec_Int_t * Pdr_InvMinimize( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
int iFoVarBeg = pCnf->nVars - Gia_ManRegNum(p); int iFoVarBeg = pCnf->nVars - Gia_ManRegNum(p);
int iFiVarBeg = 1 + Gia_ManPoNum(p); int iFiVarBeg = 1 + Gia_ManPoNum(p);
int iAuxVarBeg = sat_solver_nvars(pSat); int iAuxVarBeg = sat_solver_nvars(pSat);
assert( Gia_ManPoNum(p) == 1 );
// allocate auxiliary variables // allocate auxiliary variables
assert( sat_solver_nvars(pSat) == pCnf->nVars );
sat_solver_setnvars( pSat, sat_solver_nvars(pSat) + nCubes ); sat_solver_setnvars( pSat, sat_solver_nvars(pSat) + nCubes );
// add clauses // add clauses
Pdr_ForEachCube( pList, pCube, i ) Pdr_ForEachCube( pList, pCube, i )
...@@ -785,25 +816,28 @@ Vec_Int_t * Pdr_InvMinimize( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) ...@@ -785,25 +816,28 @@ Vec_Int_t * Pdr_InvMinimize( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
if ( k != i && !Vec_BitEntry(vRemoved, k) ) // skip this cube and already removed cubes if ( k != i && !Vec_BitEntry(vRemoved, k) ) // skip this cube and already removed cubes
Vec_IntPush( vLits, Abc_Var2Lit(iAuxVarBeg + k, 0) ); // pos aux literal Vec_IntPush( vLits, Abc_Var2Lit(iAuxVarBeg + k, 0) ); // pos aux literal
nLits = Vec_IntSize( vLits ); nLits = Vec_IntSize( vLits );
// check if the property still holds // check if the property still holds
if ( fCheckProperty ) if ( fCheckProperty )
{ {
Vec_IntPush( vLits, Abc_Var2Lit(1, 0) ); for ( k = 0; k < Gia_ManPoNum(p); k++ )
status = sat_solver_solve( pSat, Vec_IntArray(vLits), Vec_IntLimit(vLits), nBTLimit, 0, 0, 0 );
if ( status == l_Undef ) // timeout
{ {
fFailed = 1; Vec_IntShrink( vLits, nLits );
break; Vec_IntPush( vLits, Abc_Var2Lit(1+k, 0) );
status = sat_solver_solve( pSat, Vec_IntArray(vLits), Vec_IntLimit(vLits), nBTLimit, 0, 0, 0 );
if ( status == l_Undef ) // timeout
{
fFailed = 1;
break;
}
if ( status == l_True ) // sat - property fails
break;
assert( status == l_False ); // unsat - property holds
} }
if ( status == l_True ) // sat - property fails if ( fFailed )
{ break;
//printf( "property fails if clause %d is removed\n", i ); if ( k < Gia_ManPoNum(p) )
continue; continue;
}
assert( status == l_False ); // unsat - property holds
} }
// check other clauses // check other clauses
fCannot = 0; fCannot = 0;
Pdr_ForEachCube( pList, pCube, n ) Pdr_ForEachCube( pList, pCube, n )
...@@ -866,6 +900,9 @@ Vec_Int_t * Pdr_InvMinimizeLits( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) ...@@ -866,6 +900,9 @@ Vec_Int_t * Pdr_InvMinimizeLits( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
Vec_Int_t * vRes = NULL; Vec_Int_t * vRes = NULL;
abctime clk = Abc_Clock(); abctime clk = Abc_Clock();
int i, k, nLits = 0, * pCube, * pList = Vec_IntArray(vInv), nRemoved = 0; int i, k, nLits = 0, * pCube, * pList = Vec_IntArray(vInv), nRemoved = 0;
Cnf_Dat_t * pCnf = Mf_ManGenerateCnf( p, 8, 0, 0, 0 );
sat_solver * pSat;
// sat_solver * pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 );
Pdr_ForEachCube( pList, pCube, i ) Pdr_ForEachCube( pList, pCube, i )
{ {
nLits += pCube[0]; nLits += pCube[0];
...@@ -873,16 +910,23 @@ Vec_Int_t * Pdr_InvMinimizeLits( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose ) ...@@ -873,16 +910,23 @@ Vec_Int_t * Pdr_InvMinimizeLits( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose )
{ {
int Save = pCube[k+1]; int Save = pCube[k+1];
pCube[k+1] = -1; pCube[k+1] = -1;
if ( Pdr_InvCheck(p, vInv, 0) ) //sat_solver_bookmark( pSat );
{ pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 );
if ( Pdr_InvCheck_int(p, vInv, 0, pSat) )
pCube[k+1] = Save; pCube[k+1] = Save;
continue; else
{
if ( fVerbose )
printf( "Removing lit %d from clause %d.\n", k, i );
nRemoved++;
} }
if ( fVerbose ) sat_solver_delete( pSat );
printf( "Removing lit %d from clause %d.\n", k, i ); //sat_solver_rollback( pSat );
nRemoved++; //sat_solver_bookmark( pSat );
} }
} }
Cnf_DataFree( pCnf );
//sat_solver_delete( pSat );
if ( nRemoved ) if ( nRemoved )
printf( "Invariant minimization reduced %d literals (out of %d). ", nRemoved, nLits ); printf( "Invariant minimization reduced %d literals (out of %d). ", nRemoved, nLits );
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment