コード例 #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;
 }