| 1085 | } |
| 1086 | |
| 1087 | bool ap::fp_less(double v1, double v2) |
| 1088 | { |
| 1089 | // IEEE-strict floating point comparison |
| 1090 | volatile double x = v1; |
| 1091 | volatile double y = v2; |
| 1092 | return x<y; |
| 1093 | } |
| 1094 | |
| 1095 | bool ap::fp_less_eq(double v1, double v2) |
| 1096 | { |
nothing calls this directly
no outgoing calls
no test coverage detected