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

Side by Side Diff: tests/lib/math/low_test.dart

Issue 10389150: - Add a math library. Currently it mostly matches the Math class in dart:core. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Test that the default PRNG does uniformly distribute values when not using
6 // a power of 2.
7
8 // Library tag to allow Dartium to run the test.
9 #library("low_test.dart");
10
11 #import("dart:math");
12
13 void main() {
14 var n = (2 * (1<<32)) ~/ 3;
15 var n2 = n ~/ 2;
16
17 var iterations = 200000;
18
19 var prng = new Random();
20
21 var low = 0;
22 for (var i = 0; i < iterations; i++) {
23 if (prng.nextInt(n) < n2) {
24 low++;
25 }
26 }
27
28 var diff = (low - (iterations ~/ 2)).abs();
29 print("$low, $diff");
kasperl 2012/05/23 12:40:46 Debug printing?
30 Expect.isTrue(diff < (iterations ~/ 20));
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698