Implemented explicit syntax tree representation for first-order formulas.

This commit is contained in:
2017-03-15 16:00:00 +01:00
parent 7ff537a515
commit 9e6d135781
12 changed files with 1225 additions and 569 deletions

View File

@@ -118,7 +118,7 @@ struct Keyword
inline ColorStream &operator<<(ColorStream &stream, const Keyword &keyword)
{
return (stream
<< Format({Color::Blue, FontWeight::Bold})
<< Format({Color::Blue, FontWeight::Normal})
<< keyword.name
<< ResetFormat());
}