Commit 7d330158 by Alan Mishchenko

New fast extract.

parent a762c695
...@@ -814,7 +814,7 @@ void Fx_ManFindCommonPairs( Vec_Wec_t * vCubes, Vec_Int_t * vPart0, Vec_Int_t * ...@@ -814,7 +814,7 @@ void Fx_ManFindCommonPairs( Vec_Wec_t * vCubes, Vec_Int_t * vPart0, Vec_Int_t *
int * pBeg2 = vPart1->pArray; int * pBeg2 = vPart1->pArray;
int * pEnd1 = vPart0->pArray + vPart0->nSize; int * pEnd1 = vPart0->pArray + vPart0->nSize;
int * pEnd2 = vPart1->pArray + vPart1->nSize; int * pEnd2 = vPart1->pArray + vPart1->nSize;
int i, k, i_, k_, Counter = 0; int i, k, i_, k_;
Vec_IntClear( vPairs ); Vec_IntClear( vPairs );
while ( pBeg1 < pEnd1 && pBeg2 < pEnd2 ) while ( pBeg1 < pEnd1 && pBeg2 < pEnd2 )
{ {
......
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