3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

ensure that seq rewriter gets invoked during pre-processing

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-02-06 16:13:31 +00:00
parent eae17a43a2
commit 5b50d98b89
9 changed files with 130 additions and 41 deletions

View file

@ -173,6 +173,9 @@ std::string zstring::encode() const {
if (0 <= ch && ch < 32) {
strm << esc_table[ch];
}
else if (ch == '\\') {
strm << "\\\\";
}
else {
strm << (char)(ch);
}