| 1093 | } |
| 1094 | |
| 1095 | bool ap::fp_less_eq(double v1, double v2) |
| 1096 | { |
| 1097 | // IEEE-strict floating point comparison |
| 1098 | volatile double x = v1; |
| 1099 | volatile double y = v2; |
| 1100 | return x<=y; |
| 1101 | } |
| 1102 | |
| 1103 | bool ap::fp_greater(double v1, double v2) |
| 1104 | { |
nothing calls this directly
no outgoing calls
no test coverage detected