Updates to delay optimization project.

This commit is contained in:
Alan Mishchenko 2016-12-31 22:56:30 +07:00
parent 3f2899d6ea
commit 290c70f73e
1 changed files with 1 additions and 1 deletions

View File

@ -1883,7 +1883,7 @@ int Sbd_ManImplement2( Sbd_Man_t * p, int Pivot, int nStrs, Sbd_Str_t * pStrs )
}
// make sure delay reduction is achieved
iNewLev = Vec_IntEntry( p->vLutLevs, Abc_Lit2Var(iLit) );
assert( iNewLev < iCurLev );
assert( !iNewLev || iNewLev < iCurLev );
// update delay of the initial node
assert( Vec_IntEntry(p->vLutLevs, Pivot) == iCurLev );
Vec_IntWriteEntry( p->vLutLevs, Pivot, iNewLev );