(self, kernel)
| 839 | assert _try_prove(fpEQ(fpAdd(RNE(), FPVal(1.5), FPVal(2.5)), FPVal(4.0))) |
| 840 | |
| 841 | def test_sub(self, kernel): |
| 842 | assert _try_prove(fpEQ(fpSub(RNE(), FPVal(5.0), FPVal(3.0)), FPVal(2.0))) |
| 843 | |
| 844 | def test_mul(self, kernel): |
| 845 | assert _try_prove(fpEQ(fpMul(RNE(), FPVal(3.0), FPVal(4.0)), FPVal(12.0))) |
nothing calls this directly
no test coverage detected