Commit a87a3b4e by Alan Mishchenko

Bug fix in stadard cell library representation.

parent 871684d2
...@@ -195,9 +195,11 @@ Vec_Int_t * Amap_LibDeriveGatePerm_rec( Amap_Lib_t * pLib, Kit_DsdNtk_t * pNtk, ...@@ -195,9 +195,11 @@ Vec_Int_t * Amap_LibDeriveGatePerm_rec( Amap_Lib_t * pLib, Kit_DsdNtk_t * pNtk,
break; break;
} }
} }
assert( iDsdLit == Vec_IntSize(vDsdLits) );
Vec_IntFree( vNodFanin ); Vec_IntFree( vNodFanin );
Vec_IntFree( vDsdLits ); Vec_IntFree( vDsdLits );
// assert( iDsdLit == Vec_IntSize(vDsdLits) );
if ( iDsdLit != Vec_IntSize(vDsdLits) )
Vec_IntFreeP( &vPerm );
return vPerm; return vPerm;
} }
......
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