Commit c39fd374 by Alan Mishchenko

Added returning counter-example after BMC, which was recently added to 'dprove'.

parent 14457af2
......@@ -2270,6 +2270,10 @@ int Abc_NtkDarProve( Abc_Ntk_t * pNtk, Fra_Sec_t * pSecPar, int nBmcFramesMax, i
printf( "SOLUTION: FAIL " );
ABC_PRT( "Time", clock() - clkTotal );
}
// return the counter-example generated
ABC_FREE( pNtk->pModel );
ABC_FREE( pNtk->pSeqModel );
pNtk->pSeqModel = pMan->pSeqModel; pMan->pSeqModel = NULL;
Aig_ManStop( pMan );
return RetValue;
}
......
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