Remove GraphWalkSolver

It's not worth maintaining and if anybody cares the code is in git history.
This commit is contained in:
Pieter-Jan Briers
2021-07-31 01:53:40 +02:00
parent e93d174c1b
commit b92a2ba115
2 changed files with 0 additions and 183 deletions

View File

@@ -18,13 +18,11 @@ namespace Pow3r
private readonly string[] _solverNames =
{
nameof(GraphWalkSolver),
nameof(BatteryRampPegSolver),
nameof(NoOpSolver)
};
private readonly IPowerSolver[] _solvers = {
new GraphWalkSolver(),
new BatteryRampPegSolver(),
new NoOpSolver()
};