mirror of
https://github.com/Z3Prover/z3
synced 2026-04-05 03:09:01 +00:00
Signature splits
Fixed dot printing errorfor Skolems
This commit is contained in:
parent
1c24c835c9
commit
b74f0bbb00
7 changed files with 178 additions and 1 deletions
|
|
@ -393,7 +393,9 @@ namespace seq {
|
|||
if (!e) {
|
||||
result += "#" + std::to_string(tok->id());
|
||||
} else if (tok->is_var()) {
|
||||
result += dot_html_escape(to_app(e)->get_decl()->get_name().str());
|
||||
std::ostringstream os;
|
||||
os << mk_pp(e, m);
|
||||
result += dot_html_escape(os.str());
|
||||
} else if (tok->is_unit()) {
|
||||
// seq.unit with non-literal character: show the character expression
|
||||
expr* ch = to_app(e)->get_arg(0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue