patrick
/
plasp
Archived
1
0
Fork 0

Cleaned up output of translated derived predicates.

This commit is contained in:
Patrick Lühne 2016-12-07 23:26:46 +01:00
parent a8ba375e36
commit 4172d320e4
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 2 additions and 12 deletions

View File

@ -229,7 +229,7 @@ void TranslatorASP::translateDerivedPredicates() const
m_outputStream
<< std::endl
<< output::Function("variable") << "("
<< output::Keyword("variable") << "(";
<< output::Keyword("derived") << "(";
printDerivedPredicateName(predicate);
@ -240,17 +240,7 @@ void TranslatorASP::translateDerivedPredicates() const
m_outputStream << ".";
});
m_outputStream
<< std::endl << std::endl
<< output::Function("boolean") << "(" << output::Boolean("true") << ")." << std::endl
<< output::Function("boolean") << "(" << output::Boolean("false") << ")." << std::endl
<< std::endl
<< output::Function("contains") << "("
<< output::Keyword("variable") << "(" << output::Variable("X") << "), "
<< output::Keyword("value") << "(" << output::Variable("X") << ", " << output::Variable("B") << ")) :- "
<< output::Function("variable") << "(" << output::Keyword("variable") << "(" << output::Variable("X") << ")), "
<< output::Function("boolean") << "(" << output::Variable("B") << ")."
<< std::endl;
m_outputStream << std::endl;
}
////////////////////////////////////////////////////////////////////////////////////////////////////