patrick
/
plasp
Archived
1
0
Fork 0

Fixed bug in output format.

This commit is contained in:
Patrick Lühne 2016-08-13 04:04:28 +02:00
parent 8969364f73
commit 340db244f6
1 changed files with 2 additions and 2 deletions

View File

@ -218,11 +218,11 @@ void TranslatorASP::translateActions() const
this->translateLiteral(literal);
m_outputStream << ") :- ";
m_outputStream << ") :- " << utils::Keyword("action") << "(";
printActionName(*action);
m_outputStream << ".";
m_outputStream << ").";
};
m_outputStream << std::endl;