Hiding mutex group section in output if there are none.
This commit is contained in:
parent
76f8df13fc
commit
be376a9ffb
@ -33,8 +33,12 @@ void TranslatorASP::translate() const
|
||||
translateVariables();
|
||||
m_outputStream << std::endl;
|
||||
translateActions();
|
||||
m_outputStream << std::endl;
|
||||
translateMutexes();
|
||||
|
||||
if (!m_description.mutexGroups().empty())
|
||||
{
|
||||
m_outputStream << std::endl;
|
||||
translateMutexes();
|
||||
}
|
||||
|
||||
if (m_description.usesAxiomRules())
|
||||
{
|
||||
|
Reference in New Issue
Block a user