summaryrefslogtreecommitdiff
path: root/benchmark/app_tarai.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_tarai.yml')
-rw-r--r--benchmark/app_tarai.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/benchmark/app_tarai.yml b/benchmark/app_tarai.yml
new file mode 100644
index 0000000000..1f53db68a0
--- /dev/null
+++ b/benchmark/app_tarai.yml
@@ -0,0 +1,13 @@
+benchmark:
+ app_tarai: |
+ def tarai( x, y, z )
+ if x <= y
+ then y
+ else tarai(tarai(x-1, y, z),
+ tarai(y-1, z, x),
+ tarai(z-1, x, y))
+ end
+ end
+
+ tarai(12, 6, 0)
+loop_count: 1