mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
merge seq and string operators
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
70b10d53cf
commit
8bb73c8eae
6 changed files with 186 additions and 145 deletions
|
@ -71,9 +71,9 @@ namespace smt {
|
|||
return 0;
|
||||
}
|
||||
virtual void register_value(expr* n) {
|
||||
std::string sym;
|
||||
if (u.str.is_const(n, sym)) {
|
||||
m_strings.insert(symbol(sym.c_str()));
|
||||
symbol sym;
|
||||
if (u.str.is_string(n, sym)) {
|
||||
m_strings.insert(sym);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue