Exemple #1
0
        public void AddProblem(PDDLFile problem)
        {
            if (Problems == null)
            {
                Problems = new Dictionary <string, PDDLFile>();
            }

            Problems.Add(problem.Name, problem);
        }
Exemple #2
0
 public PDDLModel(string systemName, Dictionary <string, PDDLFile> problems, PDDLFile domain)
 {
     SystemName = systemName;
     Problems   = problems;
     Domain     = domain;
 }