Commit 49ac3c52 by Alan Mishchenko

Updating logic extraction.

parent 462d4c52
...@@ -772,7 +772,8 @@ int Dam_ManUpdateNode( Dam_Man_t * p, int iObj, int iLit0, int iLit1, int iLitNe ...@@ -772,7 +772,8 @@ int Dam_ManUpdateNode( Dam_Man_t * p, int iObj, int iLit0, int iLit1, int iLitNe
if ( Num > 0 ) if ( Num > 0 )
{ {
Vec_FltAddToEntry( p->vCounts, Num, -1 ); Vec_FltAddToEntry( p->vCounts, Num, -1 );
Vec_QueUpdate( p->vQue, Num ); if ( Vec_QueIsMember(p->vQue, Num) )
Vec_QueUpdate( p->vQue, Num );
fPres |= (1 << c); fPres |= (1 << c);
} }
} }
...@@ -826,7 +827,7 @@ void Dam_ManUpdate( Dam_Man_t * p, int iDiv ) ...@@ -826,7 +827,7 @@ void Dam_ManUpdate( Dam_Man_t * p, int iDiv )
Vec_IntFillExtra( p->vNodStore, Vec_IntSize(p->vNodStore) + nRefs, -1 ); Vec_IntFillExtra( p->vNodStore, Vec_IntSize(p->vNodStore) + nRefs, -1 );
pPairsNew++; pPairsNew++;
} }
printf( "Added %d new pairs\n", pPairsNew ); // printf( "Added %d new pairs\n", pPairsNew );
// fill in the divisors // fill in the divisors
iNode = -1; iNode = -1;
Vec_IntForEachEntry( vDivs, iDivTemp, i ) Vec_IntForEachEntry( vDivs, iDivTemp, i )
......
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