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, 0 insertions, 13 deletions
diff --git a/benchmark/app_tarai.yml b/benchmark/app_tarai.yml
deleted file mode 100644
index 1f53db68a0..0000000000
--- a/benchmark/app_tarai.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-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