Commit 3634f60d by Alan Mishchenko

Fixing a bug and adding verification of minimized counter-example.

parent abde9fe9
...@@ -763,9 +763,9 @@ Abc_CexPrintStats( pCare ); ...@@ -763,9 +763,9 @@ Abc_CexPrintStats( pCare );
} }
// verify the reduced counter-example using ternary simulation // verify the reduced counter-example using ternary simulation
if ( !Saig_ManCexVerifyUsingTernary( pAig, pCex, pCare ) ) if ( !Saig_ManCexVerifyUsingTernary( pAig, pCex, pCare ) )
printf( "Saig_ManCbaFindCexCareBits(): Counter-example verification has failed!!!\n" ); printf( "Saig_ManCbaFindCexCareBits(): Minimized counter-example verification has failed!!!\n" );
else if ( fVerbose ) else if ( fVerbose )
printf( "Saig_ManCbaFindCexCareBits(): Counter-example verification is successful.\n" ); printf( "Saig_ManCbaFindCexCareBits(): Minimized counter-example verification is successful.\n" );
Aig_ManCleanMarkAB( pAig ); Aig_ManCleanMarkAB( pAig );
return pCare; return pCare;
} }
......
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