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:
Patrick Lühne 2017-11-01 16:00:48 +01:00
parent 4faa8813e4
commit 3a7b61de68
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF

View File

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