コード例 #1
0
ファイル: PDDLModel.cs プロジェクト: vu111293/pat-design
        public void AddProblem(PDDLFile problem)
        {
            if (Problems == null)
            {
                Problems = new Dictionary <string, PDDLFile>();
            }

            Problems.Add(problem.Name, problem);
        }
コード例 #2
0
ファイル: PDDLModel.cs プロジェクト: vu111293/pat-design
 public PDDLModel(string systemName, Dictionary <string, PDDLFile> problems, PDDLFile domain)
 {
     SystemName = systemName;
     Problems   = problems;
     Domain     = domain;
 }