diff --git a/scenarios/fibonacci/cape-tests.json b/scenarios/fibonacci/cape-tests.json index 8fba9139..2db134d2 100644 --- a/scenarios/fibonacci/cape-tests.json +++ b/scenarios/fibonacci/cape-tests.json @@ -122,6 +122,30 @@ "content": "(con integer 75025)" } }, + { + "name": "fibonacci_100", + "description": "Fibonacci of 100 should return 354224848179261915075", + "input": { + "type": "uplc", + "value": "(con integer 100)" + }, + "expected": { + "type": "value", + "content": "(con integer 354224848179261915075)" + } + }, + { + "name": "fibonacci_217", + "description": "Fibonacci of 217 should return 1001919737325604309473206237898433933302481297", + "input": { + "type": "uplc", + "value": "(con integer 217)" + }, + "expected": { + "type": "value", + "content": "(con integer 1001919737325604309473206237898433933302481297)" + } + }, { "name": "fibonacci_negative", "description": "Fibonacci of negative number should return the negative number itself based on current implementation", diff --git a/submissions/fibonacci/OpShin_1.0.0_nielstron/metrics.json b/submissions/fibonacci/OpShin_1.0.0_nielstron/metrics.json index e9cc7763..d21514d3 100644 --- a/submissions/fibonacci/OpShin_1.0.0_nielstron/metrics.json +++ b/submissions/fibonacci/OpShin_1.0.0_nielstron/metrics.json @@ -70,6 +70,20 @@ "memory_units": 331254, "name": "fibonacci_25" }, + { + "cpu_units": 235581218, + "description": "Fibonacci of 100 should return 354224848179261915075", + "execution_result": "success", + "memory_units": 1269211, + "name": "fibonacci_100" + }, + { + "cpu_units": 507522713, + "description": "Fibonacci of 217 should return 1001919737325604309473206237898433933302481297", + "execution_result": "success", + "memory_units": 2732561, + "name": "fibonacci_217" + }, { "cpu_units": 1289439, "description": "Fibonacci of negative number should return the negative number itself based on current implementation", @@ -83,26 +97,26 @@ }, "measurements": { "cpu_units": { - "maximum": 61296653, - "median": 14821553, + "maximum": 507522713, + "median": 21792818, "minimum": 1289439, - "sum": 240131414, + "sum": 983235345, "sum_negative": 0, - "sum_positive": 240131414 + "sum_positive": 983235345 }, "memory_units": { - "maximum": 331254, - "median": 81134, + "maximum": 2732561, + "median": 118652, "minimum": 7402, - "sum": 1306476, + "sum": 5308248, "sum_negative": 0, - "sum_positive": 1306476 + "sum_positive": 5308248 }, "script_size_bytes": 227, "term_size": 285 }, "scenario": "fibonacci", - "timestamp": "2025-10-16T07:55:04Z", + "timestamp": "2025-10-21T13:11:26Z", "version": "1.0.0", "notes": "Generated using UPLC-CAPE measure tool" }