From 3db2f18922275eda9267a83b50011888e079f89f Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 17 Jun 2025 06:03:06 -0700 Subject: [PATCH] Fix scoring metric. --- src/bin/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/cli.ts b/src/bin/cli.ts index 8242b57..c6c17fd 100755 --- a/src/bin/cli.ts +++ b/src/bin/cli.ts @@ -275,7 +275,7 @@ async function score (): Promise { try { const result = await benchmark() logger.log(result) - if (result != null) rates.push(result.truncatedArithmetic) + if (result != null) rates.push(result.truncatedRate) } catch (err) { logger.log(err) } -- 2.47.3