| 1109 | } |
| 1110 | |
| 1111 | bool ap::fp_greater_eq(double v1, double v2) |
| 1112 | { |
| 1113 | // IEEE-strict floating point comparison |
| 1114 | volatile double x = v1; |
| 1115 | volatile double y = v2; |
| 1116 | return x>=y; |
| 1117 | } |
| 1118 | |
| 1119 | /******************************************************************** |
| 1120 | Dataset functions |
nothing calls this directly
no outgoing calls
no test coverage detected