]> git.scottworley.com Git - inverse-tax/commitdiff
Test with larger tables
authorScott Worley <scottworley@scottworley.com>
Fri, 24 May 2019 15:00:21 +0000 (08:00 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 24 May 2019 15:00:21 +0000 (08:00 -0700)
tax.test.js

index 21b98b62a01955df27e6c9e2931c40ae66e385d9..29f436fa957586671113770afc7cd182ebe9074c 100644 (file)
@@ -16,7 +16,7 @@ function rand(limit = 99) {
 
 function make_random_tax_table() {
   function make_random_table(min_threshold) {
-    if (rand(2)) return [];
+    if (rand(4) == 0) return [];
     const start = min_threshold === undefined ? rand() : min_threshold;
     const end = start + 1 + rand();
     return [[start, rand()]].concat(make_random_table(end));