Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
 public MinBorderAction(MinBorderInstance position, MinBorderNode nextNode)
 {
     Position = position;
     NextNode = nextNode;
 }