Added supporting dual-output seq miters in &iso.

This commit is contained in:
Alan Mishchenko 2012-04-28 02:24:34 +07:00
parent 2bf7454b41
commit 8a89f1c3f6
1 changed files with 2 additions and 2 deletions

View File

@ -1146,11 +1146,11 @@ Gia_Man_t * Gia_ManIsoReduce( Gia_Man_t * pInit, Vec_Ptr_t ** pvPosEquivs, int f
int i, Entry;
Vec_IntForEachEntry( vRemain, Entry, i )
{
printf( "%d ", Entry );
// printf( "%d ", Entry );
Vec_IntPush( vTemp, 2*Entry );
Vec_IntPush( vTemp, 2*Entry+1 );
}
printf( "\n" );
// printf( "\n" );
Vec_IntFree( vRemain );
vRemain = vTemp;
Gia_ManStop( p );