Fixed syntax error at end of initial state facts.

Due to a mistake in commit 6d07fcb, the closing parenthesis and period
at the end of initial state facts was omitted. This adds these back in
order to solve this syntax error.
This commit is contained in:
2017-11-01 16:00:48 +01:00
parent 4faa8813e4
commit 3a7b61de68

View File

@@ -59,6 +59,8 @@ inline void translateFact(colorlog::ColorStream &outputStream, const ::pddl::nor
};
fact.match(handleAtomicFormula, handleNot);
outputStream << ").";
}
////////////////////////////////////////////////////////////////////////////////////////////////////