| 902 | } |
| 903 | |
| 904 | double xorFunction(const double v1, const double v2) { |
| 905 | if (convertDoubleToBool(v1) == convertDoubleToBool(v2)) |
| 906 | return 0; |
| 907 | return 1; |
| 908 | } |
| 909 | |
| 910 | double notFunction(const double v) { |
| 911 | if (convertDoubleToBool(v)) |
nothing calls this directly
no test coverage detected