Bug fix in 'int'.

This commit is contained in:
Alan Mishchenko 2013-08-05 22:58:08 -07:00
parent 220a83f1e5
commit cb99a2212d
1 changed files with 2 additions and 2 deletions

View File

@ -603,7 +603,7 @@ int Inta_ManProofTraceOne( Inta_Man_t * p, Sto_Cls_t * pConflict, Sto_Cls_t * pF
// resolve the temporary resolvent with the reason clause
if ( p->fProofVerif )
{
int v1, v2, Entry;
int v1, v2, Entry = -1;
if ( fPrint )
Inta_ManPrintResolvent( p->vResLits );
// check that the var is present in the resolvent
@ -649,7 +649,7 @@ int Inta_ManProofTraceOne( Inta_Man_t * p, Sto_Cls_t * pConflict, Sto_Cls_t * pF
// use the resulting clause to check the correctness of resolution
if ( p->fProofVerif )
{
int v1, v2, Entry;
int v1, v2, Entry = -1;
if ( fPrint )
Inta_ManPrintResolvent( p->vResLits );
Vec_IntForEachEntry( p->vResLits, Entry, v1 )