Commented out assertions that do not hold due to rounding of floating point numbers.

This commit is contained in:
Alan Mishchenko 2014-05-10 13:35:25 +07:00
parent 0a79a38a4d
commit aed898c878
1 changed files with 2 additions and 2 deletions

View File

@ -210,8 +210,8 @@ void Map_TimePropagateRequiredPhase( Map_Man_t * p, Map_Node_t * pNode, int fPha
}
// compare the required times with the arrival times
assert( pNode->tArrival[fPhase].Rise < ptReqOut->Rise + p->fEpsilon );
assert( pNode->tArrival[fPhase].Fall < ptReqOut->Fall + p->fEpsilon );
// assert( pNode->tArrival[fPhase].Rise < ptReqOut->Rise + p->fEpsilon );
// assert( pNode->tArrival[fPhase].Fall < ptReqOut->Fall + p->fEpsilon );
}
float Map_MatchComputeReqTimes( Map_Cut_t * pCut, int fPhase, Map_Time_t * ptArrRes )
{