diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2008-04-20 08:01:00 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2008-04-20 08:01:00 -0700 |
commit | 7ff4c2b2719a78ba7d1ddcfdf9356affa291e876 (patch) | |
tree | 0d35db4e2b0899206399cc19d73df75009d8af69 /src/opt/fret/fretMain.c | |
parent | b51685d6936fa397e143e1dc3b1127327325c100 (diff) | |
download | abc-7ff4c2b2719a78ba7d1ddcfdf9356affa291e876.tar.gz abc-7ff4c2b2719a78ba7d1ddcfdf9356affa291e876.tar.bz2 abc-7ff4c2b2719a78ba7d1ddcfdf9356affa291e876.zip |
Version abc80420
Diffstat (limited to 'src/opt/fret/fretMain.c')
-rw-r--r-- | src/opt/fret/fretMain.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/opt/fret/fretMain.c b/src/opt/fret/fretMain.c index 9a981a8e..41de55b9 100644 --- a/src/opt/fret/fretMain.c +++ b/src/opt/fret/fretMain.c @@ -347,7 +347,7 @@ Abc_FlowRetime_MainLoop( ) { pManMR->pInitNtk = NULL; } while(1); - assert(!pManMR->fComputeInitState || pManMR->pInitNtk); +// assert(!pManMR->fComputeInitState || pManMR->pInitNtk); if (pManMR->fComputeInitState) Abc_NtkDelete(pManMR->pInitNtk); if (pManMR->fGuaranteeInitState) ; /* Abc_NtkDelete(pNtkCopy); note: original ntk deleted later */ @@ -478,6 +478,7 @@ int Abc_FlowRetime_PushFlows( Abc_Ntk_t * pNtk, bool fVerbose ) { int i, j, flow = 0, last, srcDist = 0; Abc_Obj_t *pObj, *pObj2; + int clk = clock(); pManMR->constraintMask |= BLOCK; @@ -522,6 +523,7 @@ Abc_FlowRetime_PushFlows( Abc_Ntk_t * pNtk, bool fVerbose ) { if (fVerbose) vprintf("max-flow2 = %d\n", flow); + PRT( "time", clock() - clk ); return flow; } |