mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
working on quantifiers
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4f7dd08c38
commit
8612c89c54
7 changed files with 146 additions and 39 deletions
|
@ -67,8 +67,13 @@ symbol smt_renaming::fix_symbol(symbol s, int k) {
|
|||
buffer << s << k;
|
||||
return symbol(buffer.str().c_str());
|
||||
}
|
||||
|
||||
buffer << mk_smt2_quoted_symbol(s);
|
||||
|
||||
if (is_smt2_quoted_symbol(s)) {
|
||||
buffer << mk_smt2_quoted_symbol(s);
|
||||
}
|
||||
else {
|
||||
buffer << s;
|
||||
}
|
||||
if (k > 0) {
|
||||
buffer << k;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue