Commit 5ec4db2d by Alan Mishchenko

Debugging a proof error.

parent 7913c1d8
......@@ -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 )
......
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