Commit 710fd8e1 by Alan Mishchenko

Internal parameter tuning.

parent f253e7aa
...@@ -267,7 +267,7 @@ int Abc_SclFindUpsizes( SC_Man * p, Vec_Int_t * vPathNodes, int Ratio, int Notch ...@@ -267,7 +267,7 @@ int Abc_SclFindUpsizes( SC_Man * p, Vec_Int_t * vPathNodes, int Ratio, int Notch
Abc_NtkForEachObjVec( vPathNodes, p->pNtk, pObj, i ) Abc_NtkForEachObjVec( vPathNodes, p->pNtk, pObj, i )
{ {
iIterLast = Vec_IntEntry(p->vNodeIter, Abc_ObjId(pObj)); iIterLast = Vec_IntEntry(p->vNodeIter, Abc_ObjId(pObj));
if ( iIterLast >= 0 && iIterLast + 10 > iIter ) if ( iIterLast >= 0 && iIterLast + 5 > iIter )
continue; continue;
// compute nodes to recalculate timing and nodes to evaluate afterwards // compute nodes to recalculate timing and nodes to evaluate afterwards
Abc_SclFindNodesToUpdate( pObj, &vRecalcs, &vEvals ); Abc_SclFindNodesToUpdate( pObj, &vRecalcs, &vEvals );
......
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