private static void OutputNodeList(MinBorderInstance result) { Log.Post("Best Result Found: " + result.MaxBorderSize); var resultString = "Resulting List: "; foreach (var item in result.Nodes.OrderBy(n => result.NodeOrder[n.OrderId])) { resultString += item.Name + " - "; } resultString.Remove(resultString.Length - 3); Log.Post(resultString, LogCategory.Overview); }
public MinBorderAction(MinBorderInstance position, MinBorderNode nextNode) { Position = position; NextNode = nextNode; }