(self, kernel)
| 866 | assert _try_prove(fpEQ(fpMax(FPVal(1.0), FPVal(2.0)), FPVal(2.0))) |
| 867 | |
| 868 | def test_add_zero(self, kernel): |
| 869 | assert _try_prove(fpEQ(fpAdd(RNE(), FPVal(5.0), FPVal(0.0)), FPVal(5.0))) |
| 870 | |
| 871 | def test_mul_one(self, kernel): |
| 872 | assert _try_prove(fpEQ(fpMul(RNE(), FPVal(5.0), FPVal(1.0)), FPVal(5.0))) |
nothing calls this directly
no test coverage detected