eduherminio / AoCHelper

Helper .NET library for solving Advent of Code puzzles

Home Page:https://adventofcode.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Config option to allow for multiple runs

tslater2006 opened this issue · comments

Would be nice if we could set a config property that would run each solution N number of times and take the average timing across those runs. Where N is the value set in config.

            SolverConfiguration cfg = new();
            cfg.RunCount = 20;
            Solver.SolveAll(cfg);