]> Nishi Git Mirror - gwion.git/commitdiff
:art: Update benchmark
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 23 Jul 2020 10:11:04 +0000 (12:11 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 23 Jul 2020 10:11:04 +0000 (12:11 +0200)
benchmark/binary-trees.gw
benchmark/string-equals.ck
benchmark/string-equals.gw
benchmark/string-equals.py
benchmark/string-equals.wren

index d92c5e0e3c67b8d12fe58104de65ae957de64fb0..94e993c37f75fb12119390e882de1d957303590f 100644 (file)
@@ -10,8 +10,8 @@ class Tree {
     if (depth > 0) {
       it + it => int item2;
       --depth;
-      Tree.new_Tree(item2 - 1, depth) @=> t.left;
-      Tree.new_Tree(item2, depth) @=> t.right;
+      new_Tree(item2 - 1, depth) @=> t.left;
+      new_Tree(item2, depth) @=> t.right;
     }
     return t;
   }
index 3a817d00551d0f08d8f2ed70ca6dc72b2507b0d4..8751efe55c308e610f227be43ef8837829f68fca 100644 (file)
@@ -9,7 +9,6 @@ for (int i; i < 1000000; ++i) {
   if ("" == "abc") ++count;
   if ("abc" == "abcd") ++count;
   if ("changed one character" == "changed !ne character") ++count;
-//  if ("123" == 123) ++count
   if ("a slightly longer string" ==
       "a slightly longer string!") ++count;
   if ("a slightly longer string" ==
index 6b197e1ef8c047a36d3cca5094423e80ec5392c2..8751efe55c308e610f227be43ef8837829f68fca 100644 (file)
@@ -9,7 +9,6 @@ for (int i; i < 1000000; ++i) {
   if ("" == "abc") ++count;
   if ("abc" == "abcd") ++count;
   if ("changed one character" == "changed !ne character") ++count;
-  if (`${123}` == "123") ++count;
   if ("a slightly longer string" ==
       "a slightly longer string!") ++count;
   if ("a slightly longer string" ==
index 7f1e23db959aef152c1523692f04b48008d947b7..4be9eb1fd85ca2a651b84737a4412f5798473de0 100644 (file)
@@ -17,7 +17,6 @@ for i in range(0, 1000000):
     count = count + 1
   if "changed one character" == "changed !ne character":
     count = count + 1
-  if "123" == 123: count = count + 1
   if "a slightly longer string" == \
      "a slightly longer string!":
       count = count + 1
index 9bdcbdfc42fccfdfc632318050b2714e70ba65d9..96d7dbf6839adc74595a255a37793260ca8e8561 100644 (file)
@@ -9,7 +9,6 @@ for (i in 1..1000000) {
   if ("" == "abc") count = count + 1
   if ("abc" == "abcd") count = count + 1
   if ("changed one character" == "changed !ne character") count = count + 1
-  if ("123" == 123) count = count + 1
   if ("a slightly longer string" ==
       "a slightly longer string!") count = count + 1
   if ("a slightly longer string" ==