Some analyzer code style changes

This commit is contained in:
Asriel Camora
2023-06-19 10:03:57 -07:00
parent 6d61e022b6
commit 05ead22448
50 changed files with 134 additions and 56 deletions
+3
View File
@@ -1,5 +1,6 @@
using Craftimizer.Simulator;
using Craftimizer.Simulator.Actions;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace Craftimizer.Solver.Crafty;
@@ -213,6 +214,7 @@ public class Solver
return (actions, state);
}
Debugger.Break();
var solver = new Solver(state, true);
while (!solver.Simulator.IsComplete)
{
@@ -232,6 +234,7 @@ public class Solver
solver = new Solver(state, true);
}
Debugger.Break();
return (actions, state);
}