From: Chris Duncan Date: Tue, 17 Jun 2025 13:03:06 +0000 (-0700) Subject: Fix scoring metric. X-Git-Tag: v5.0.0~6 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=3db2f18922275eda9267a83b50011888e079f89f;p=nano-pow.git Fix scoring metric. --- 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) }