mirror of
https://github.com/YosysHQ/abc.git
synced 2026-08-31 09:55:48 +02:00
Changes for delay-oriented computation.
This commit is contained in:
@@ -286,7 +286,7 @@ static inline void Vec_WecPush( Vec_Wec_t * p, int Level, int Entry )
|
||||
{
|
||||
if ( p->nSize < Level + 1 )
|
||||
{
|
||||
Vec_WecGrow( p, Abc_MaxInt(2*p->nCap, Level + 1) );
|
||||
Vec_WecGrow( p, Abc_MaxInt(2*p->nSize, Level + 1) );
|
||||
p->nSize = Level + 1;
|
||||
}
|
||||
Vec_IntPush( Vec_WecEntry(p, Level), Entry );
|
||||
|
||||
Reference in New Issue
Block a user