Commit aed898c8 by Alan Mishchenko

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

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