Commit 57286e8a by Alan Mishchenko

Adding features for invariant minimization.

parent 636332c6
...@@ -759,14 +759,14 @@ int Pdr_InvCheck_int( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose, sat_solver ...@@ -759,14 +759,14 @@ int Pdr_InvCheck_int( Gia_Man_t * p, Vec_Int_t * vInv, int fVerbose, sat_solver
if ( status == l_False ) // unsat -- correct if ( status == l_False ) // unsat -- correct
continue; continue;
assert( status == l_True ); assert( status == l_True );
if ( fVerbose )
printf( "Inductiveness check failed for clause %d.\n", i );
nFailed++; nFailed++;
if ( fSkip ) if ( fSkip )
{ {
Vec_IntFree( vLits ); Vec_IntFree( vLits );
return 1; return 1;
} }
if ( fVerbose )
printf( "Inductiveness check failed for clause %d.\n", i );
} }
Vec_IntFree( vLits ); Vec_IntFree( vLits );
return nFailed + nFailedOuts; return nFailed + nFailedOuts;
......
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