Commit e7ecaee9 by Alan Mishchenko

Bug fix in supergate generation.

parent 086321a2
...@@ -147,9 +147,12 @@ void Super_Precompute( Mio_Library_t * pLibGen, int nVarsMax, int nLevels, int n ...@@ -147,9 +147,12 @@ void Super_Precompute( Mio_Library_t * pLibGen, int nVarsMax, int nLevels, int n
return; return;
} }
vStr = Super_PrecomputeStr( pLibGen, nVarsMax, nLevels, nGatesMax, tDelayMax, tAreaMax, TimeLimit, fSkipInv, fVerbose ); vStr = Super_PrecomputeStr( pLibGen, nVarsMax, nLevels, nGatesMax, tDelayMax, tAreaMax, TimeLimit, fSkipInv, fVerbose );
if ( vStr )
{
fwrite( Vec_StrArray(vStr), 1, Vec_StrSize(vStr), pFile ); fwrite( Vec_StrArray(vStr), 1, Vec_StrSize(vStr), pFile );
fclose( pFile );
Vec_StrFree( vStr ); Vec_StrFree( vStr );
}
fclose( pFile );
// report the result of writing // report the result of writing
if ( fVerbose ) if ( fVerbose )
{ {
......
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