VDF Benchmark
{#if !isBenchmarking}
{/if}
{#if isBenchmarking}
Benchmarking in progress... ({currentTestIndex + 1}/{testCombinations.length})
{#if currentN !== null && currentDifficulty !== null}
N Bits: {currentN.toString(2).length}
Difficulty: {currentDifficulty}
{/if}
{/if}
{#if benchmarkResults.length > 0 && !isBenchmarking}
Benchmark Results
{#each benchmarkResults as result}
-
N Bits: {result.N.toString(2).length}, Difficulty: {result.difficulty}, Time: {result.time.toFixed(2)} ms
{/each}
{/if}