Bug fix in gate sizing.

This commit is contained in:
Alan Mishchenko 2013-06-16 22:41:40 -07:00
parent 25db1d5ae0
commit b91c41659e
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ static inline float Abc_SclGetMaxDelayNodeFanins( SC_Man * p, Abc_Obj_t * pNode
}
static inline float Abc_SclReadMaxDelay( SC_Man * p )
{
return Abc_SclObjTimeMax( p, Abc_NtkPo(p->pNtk, Vec_QueTop(p->vQue)) );
return Abc_SclObjTimeMax( p, Abc_NtkCo(p->pNtk, Vec_QueTop(p->vQue)) );
}
/**Function*************************************************************