mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
cleanups
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5533fc9dbc
commit
7de8c72246
9 changed files with 17 additions and 14 deletions
|
@ -315,7 +315,7 @@ namespace smt {
|
|||
void conflict_resolution::process_antecedent(literal antecedent, unsigned & num_marks) {
|
||||
bool_var var = antecedent.var();
|
||||
unsigned lvl = m_ctx.get_assign_level(var);
|
||||
SASSERT(var < static_cast<int>(m_ctx.get_num_bool_vars()));
|
||||
SASSERT(var < m_ctx.get_num_bool_vars());
|
||||
TRACE("conflict_", tout << "processing antecedent (level " << lvl << "):";
|
||||
m_ctx.display_literal(tout, antecedent);
|
||||
m_ctx.display_detailed_literal(tout << " ", antecedent) << "\n";);
|
||||
|
|
|
@ -1558,7 +1558,6 @@ bool theory_seq::check_ubv_string() {
|
|||
}
|
||||
|
||||
bool theory_seq::check_ubv_string(expr* e) {
|
||||
expr* n = nullptr;
|
||||
if (ctx.inconsistent())
|
||||
return true;
|
||||
if (m_has_ubv_axiom.contains(e))
|
||||
|
|
|
@ -5523,6 +5523,7 @@ namespace smt {
|
|||
TRACE("str", tout << mk_pp(node, get_manager()) << std::endl;);
|
||||
if (groundedMap.find(node) != groundedMap.end()) {
|
||||
for (auto const &itor : groundedMap[node]) {
|
||||
(void) itor;
|
||||
TRACE("str",
|
||||
tout << "\t[grounded] ";
|
||||
for (auto const &vIt : itor.first) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue