Bug fix in &srm (not generating result when there is no equivs)

This commit is contained in:
Alan Mishchenko 2010-12-03 01:21:49 -08:00
parent 2adc30f56b
commit ff5fdb92e2
1 changed files with 2 additions and 0 deletions

View File

@ -836,11 +836,13 @@ Gia_Man_t * Gia_ManSpecReduce( Gia_Man_t * p, int fDualOut, int fSynthesis, int
printf( "Gia_ManSpecReduce(): Dual-output miter should have even number of POs.\n" );
return NULL;
}
/*
if ( Gia_ManHasNoEquivs(p) )
{
printf( "Gia_ManSpecReduce(): There are no equivalences to reduce.\n" );
return NULL;
}
*/
/*
if ( !Gia_ManCheckTopoOrder( p ) )
{