Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Unified Diff: tests/standalone/fixed_precision_double_test.dart

Issue 2208473006: Introduce getter p on double in the VM to control fractional precision. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/double.dart ('k') | tests/standalone/standalone.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/fixed_precision_double_test.dart
diff --git a/tests/standalone/fixed_precision_double_test.dart b/tests/standalone/fixed_precision_double_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..0903435fce51cf8d2e10b4edc6c427ceaa09f246
--- /dev/null
+++ b/tests/standalone/fixed_precision_double_test.dart
@@ -0,0 +1,53 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import "package:expect/expect.dart";
+
+bool TestAssociativity(Function f) {
+ // Example from https://en.wikipedia.org/wiki/Floating_point
+ // Test that (a + b) + c == a + (b + c).
+ double a = f(1234.567); // Chop literals.
+ double b = f(45.67834);
+ double c = f(0.0004);
+ double x = (a + b) + c; // Chop result of multiplication or division only.
+ double y = a + (b + c);
+ print("x: $x");
+ print("y: $y");
+ return x == y;
+}
+
+bool TestDistributivity(Function f) {
+ // Example from https://en.wikipedia.org/wiki/Floating_point
+ // Test that (a + b)*c == a*c + b*c.
+ double a = f(1234.567); // Chop literals.
+ double b = f(1.234567);
+ double c = f(3.333333);
+ double x = f((a + b)*c); // Chop result of multiplication.
+ double y = f(a*c) + f(b*c);
+ print("x: $x");
+ print("y: $y");
+ return x == y;
+}
+
+main() {
+ Expect.equals(0.0, 0.0.p);
+ Expect.equals(1.5, 1.5.p);
+ Expect.notEquals(1.1, 1.1.p);
+ Expect.notEquals(1/3, (1/3).p);
siva 2016/08/04 20:20:13 What is the significance of these tests , how does
regis 2016/08/04 22:16:12 I have added comments explaining this.
+ Expect.equals((1.1 + 1/3).p, 1.1.p + (1/3).p);
+
+ print("Without chopping fractional bits:");
+ Expect.isFalse(TestAssociativity((x) => x));
+ Expect.isFalse(TestDistributivity((x) => x));
+ print("With chopping fractional bits:");
+ Expect.isTrue(TestAssociativity((x) => x.p));
+ Expect.isTrue(TestDistributivity((x) => x.p));
+
+ // Check that p works with NaN and Infinity.
+ Expect.isTrue(double.NAN.p.isNaN);
+ Expect.isTrue(double.INFINITY.p.isInfinite);
+ Expect.isFalse(double.INFINITY.p.isNegative);
+ Expect.isTrue(double.NEGATIVE_INFINITY.p.isInfinite);
+ Expect.isTrue(double.NEGATIVE_INFINITY.p.isNegative);
+}
« no previous file with comments | « runtime/lib/double.dart ('k') | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698