| 1079 | } |
| 1080 | |
| 1081 | bool ap::fp_neq(double v1, double v2) |
| 1082 | { |
| 1083 | // IEEE-strict floating point comparison |
| 1084 | return !fp_eq(v1,v2); |
| 1085 | } |
| 1086 | |
| 1087 | bool ap::fp_less(double v1, double v2) |
| 1088 | { |
nothing calls this directly
no outgoing calls
no test coverage detected