Added support for derived predicates in goals.

By accident, the support for derived predicates in goals was missing.
This commit adds this, in a very similar way to how normal predicates
are handled in the goal description.
This commit is contained in:
2017-10-27 16:46:38 +02:00
parent 6d07fcbd6c
commit 27f773e091
2 changed files with 4 additions and 4 deletions

View File

@@ -463,7 +463,7 @@ void TranslatorASP::translateGoal() const
m_outputStream << colorlog::Heading2("goal");
const auto &goal = m_description.problem.value()->goal.value();
// TODO: refactor
::plasp::pddl::translateGoal(m_outputStream, goal);
m_outputStream << std::endl;