Commit ac3817ca by Alan Mishchenko

Small bug in user timing computation.

parent 3370feea
...@@ -98,7 +98,7 @@ float Abc_NodeReadArrivalWorst( Abc_Obj_t * pNode ) ...@@ -98,7 +98,7 @@ float Abc_NodeReadArrivalWorst( Abc_Obj_t * pNode )
} }
float Abc_NodeReadRequiredWorst( Abc_Obj_t * pNode ) float Abc_NodeReadRequiredWorst( Abc_Obj_t * pNode )
{ {
return Abc_MaxFloat( Abc_NodeReadRequired(pNode)->Rise, Abc_NodeReadRequired(pNode)->Fall ); return Abc_MinFloat( Abc_NodeReadRequired(pNode)->Rise, Abc_NodeReadRequired(pNode)->Fall );
} }
/**Function************************************************************* /**Function*************************************************************
......
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