3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-09 08:45:47 +00:00

use different symbols for named rules

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2012-11-18 19:00:01 -08:00
parent 9c304d7642
commit f014ab9598
2 changed files with 10 additions and 3 deletions

View file

@ -36,6 +36,7 @@ public:
mk_fresh_name(): m_char('A'), m_num(0) {}
void add(ast* a);
symbol next();
bool contains(symbol const& s) const { return m_symbols.contains(s); }
};