Commit 8a89f1c3 by Alan Mishchenko

Added supporting dual-output seq miters in &iso.

parent 2bf7454b
...@@ -1146,11 +1146,11 @@ Gia_Man_t * Gia_ManIsoReduce( Gia_Man_t * pInit, Vec_Ptr_t ** pvPosEquivs, int f ...@@ -1146,11 +1146,11 @@ Gia_Man_t * Gia_ManIsoReduce( Gia_Man_t * pInit, Vec_Ptr_t ** pvPosEquivs, int f
int i, Entry; int i, Entry;
Vec_IntForEachEntry( vRemain, Entry, i ) Vec_IntForEachEntry( vRemain, Entry, i )
{ {
printf( "%d ", Entry ); // printf( "%d ", Entry );
Vec_IntPush( vTemp, 2*Entry ); Vec_IntPush( vTemp, 2*Entry );
Vec_IntPush( vTemp, 2*Entry+1 ); Vec_IntPush( vTemp, 2*Entry+1 );
} }
printf( "\n" ); // printf( "\n" );
Vec_IntFree( vRemain ); Vec_IntFree( vRemain );
vRemain = vTemp; vRemain = vTemp;
Gia_ManStop( p ); Gia_ManStop( p );
......
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