| 1071 | } |
| 1072 | |
| 1073 | bool ap::fp_eq(double v1, double v2) |
| 1074 | { |
| 1075 | // IEEE-strict floating point comparison |
| 1076 | volatile double x = v1; |
| 1077 | volatile double y = v2; |
| 1078 | return x==y; |
| 1079 | } |
| 1080 | |
| 1081 | bool ap::fp_neq(double v1, double v2) |
| 1082 | { |
nothing calls this directly
no outgoing calls
no test coverage detected