patrick
/
plasp
Archived
1
0
Fork 0

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
No known key found for this signature in database
GPG Key ID: 05F3611E97A70ABF
1 changed files with 2 additions and 0 deletions

View File

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