(self)
| 2870 | self.assertEqual(math.fma(a, b, -c), c) |
| 2871 | |
| 2872 | def test_fma_single_round(self): |
| 2873 | a = float.fromhex('0x1p-50') |
| 2874 | self.assertEqual(math.fma(a - 1.0, a + 1.0, 1.0), a*a) |
| 2875 | |
| 2876 | def test_random(self): |
| 2877 | # A collection of randomly generated inputs for which the naive FMA |
nothing calls this directly
no test coverage detected