3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-15 15:25:26 +00:00

add default tactic as option to overwrite the behavior of strategic solver factory

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-06-17 09:27:10 -07:00
parent 1e770af1cc
commit f3b79087ee
6 changed files with 60 additions and 5 deletions

View file

@ -126,6 +126,11 @@ namespace smt2 {
return SYMBOL_TOKEN;
}
}
if (!m_string.empty()) {
m_string.push_back(0);
m_id = m_string.begin();
return SYMBOL_TOKEN;
}
return EOF_TOKEN;
}