예제 #1
0
파일: Program.cs 프로젝트: dtklinh/CRFTool
        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);
        }
예제 #2
0
 public MinBorderAction(MinBorderInstance position, MinBorderNode nextNode)
 {
     Position = position;
     NextNode = nextNode;
 }