Debugging a proof error.

This commit is contained in:
Alan Mishchenko 2012-07-13 18:11:02 -07:00
parent 7913c1d84f
commit 5ec4db2d44
1 changed files with 2 additions and 0 deletions

View File

@ -412,6 +412,8 @@ int Sat_ProofReduce( Vec_Set_t * vProof, void * pRoots, int hProofPivot )
continue;
pNode->Id = Vec_SetAppendS( vProof, 2 + pNode->nEnts );
assert( pNode->Id > 1 );
assert( pNode->Id < (1<<vProof->nPageSize) );
assert( pNode->Id + nSize < (1<<vProof->nPageSize) );
Vec_PtrPush( vUsed, pNode );
// update fanins
Proof_NodeForeachFanin( vProof, pNode, pFanin, k )