Lines Matching refs:rel_tol
1447 self.assertIsClose(1, 1, rel_tol=-1e-100)
1449 self.assertIsClose(1, 1, rel_tol=1e-100, abs_tol=-1e10)
1459 self.assertAllClose(identical_examples, rel_tol=0.0, abs_tol=0.0)
1466 self.assertAllClose(eight_decimal_places_examples, rel_tol=1e-8)
1467 self.assertAllNotClose(eight_decimal_places_examples, rel_tol=1e-9)
1475 self.assertAllNotClose(near_zero_examples, rel_tol=0.9)
1506 self.assertAllClose(zero_tolerance_close_examples, rel_tol=0.0)
1511 self.assertAllNotClose(zero_tolerance_not_close_examples, rel_tol=0.0)
1515 self.assertAllClose([(9, 10), (10, 9)], rel_tol=0.1)
1522 self.assertAllClose(integer_examples, rel_tol=1e-8)
1523 self.assertAllNotClose(integer_examples, rel_tol=1e-9)
1533 self.assertAllClose(decimal_examples, rel_tol=1e-8)
1534 self.assertAllNotClose(decimal_examples, rel_tol=1e-9)
1544 self.assertAllClose(fraction_examples, rel_tol=1e-8)
1545 self.assertAllNotClose(fraction_examples, rel_tol=1e-9)