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:
parent
eae17a43a2
commit
5b50d98b89
9 changed files with 130 additions and 41 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue