From 6175fcb8026bae3db5b4280b655131322d7944da Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 7 May 2008 08:01:00 -0700 Subject: Version abc80507 --- src/map/if/ifMap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map/if') diff --git a/src/map/if/ifMap.c b/src/map/if/ifMap.c index bbe81cfd..7e529ef6 100644 --- a/src/map/if/ifMap.c +++ b/src/map/if/ifMap.c @@ -89,7 +89,7 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep // recompute the parameters of the best cut pCut->Delay = If_CutDelay( p, pCut ); // assert( pCut->Delay <= pObj->Required + p->fEpsilon ); - if ( pCut->Delay > pObj->Required + p->fEpsilon ) + if ( pCut->Delay > pObj->Required + 2*p->fEpsilon ) printf( "If_ObjPerformMappingAnd(): Warning! Delay of node %d (%f) exceeds the required times (%f).\n", pObj->Id, pCut->Delay, pObj->Required + p->fEpsilon ); pCut->Area = (Mode == 2)? If_CutAreaDerefed( p, pCut ) : If_CutAreaFlow( p, pCut ); -- cgit v1.2.3