protected override List<Action> search(Problem problem) {
List<Action> actions = new List<Action>();
try {
List<Action> sactions = _search.search(problem);
foreach (Action action in sactions) {
actions.Add(action);
}
}
catch (System.Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex.ToString());
}
return actions;
}