mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
adding escape characters to reason-unknown #1043
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f3a0b7e0cd
commit
1654ad7059
|
@ -652,7 +652,7 @@ public:
|
||||||
ctx.regular_stream() << "(:status " << ctx.get_status() << ")" << std::endl;
|
ctx.regular_stream() << "(:status " << ctx.get_status() << ")" << std::endl;
|
||||||
}
|
}
|
||||||
else if (opt == m_reason_unknown) {
|
else if (opt == m_reason_unknown) {
|
||||||
ctx.regular_stream() << "(:reason-unknown \"" << ctx.reason_unknown() << "\")" << std::endl;
|
ctx.regular_stream() << "(:reason-unknown \"" << escaped(ctx.reason_unknown().c_str()) << "\")" << std::endl;
|
||||||
}
|
}
|
||||||
else if (opt == m_all_statistics) {
|
else if (opt == m_all_statistics) {
|
||||||
ctx.display_statistics();
|
ctx.display_statistics();
|
||||||
|
|
Loading…
Reference in a new issue