From 67bfb4ba09aa02870140290f669360c302d55eb7 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 23 Apr 2016 15:13:22 +0300 Subject: Improved algo for edge computation. --- src/base/abci/abc.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/base/abci') diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 1676385a..96becd9d 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -34923,11 +34923,6 @@ int Abc_CommandAbc9Edge( Abc_Frame_t * pAbc, int argc, char ** argv ) Gia_ManConvertPackingToEdges( pAbc->pGia ); return 0; } - if ( DelayMax ) - { - Seg_ManComputeDelay( pAbc->pGia, DelayMax, nEdges==2, fVerbose ); - return 0; - } if ( !fUseOld ) { if ( pAbc->pGia->pManTime != NULL && Tim_ManBoxNum((Tim_Man_t*)pAbc->pGia->pManTime) ) @@ -34935,7 +34930,8 @@ int Abc_CommandAbc9Edge( Abc_Frame_t * pAbc, int argc, char ** argv ) printf( "Currently this version of the algorithm does not work for designs with boxes.\n" ); return 0; } - Edg_ManAssignEdgeNew( pAbc->pGia, nEdges, fVerbose ); + //Edg_ManAssignEdgeNew( pAbc->pGia, nEdges, fVerbose ); + Seg_ManComputeDelay( pAbc->pGia, DelayMax, nEdges==2, fVerbose ); return 0; } if ( pAbc->pGia->pManTime && fReverse ) -- cgit v1.2.3