mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 20:33:38 +00:00
parent
8ec6219010
commit
bc723fbe89
2 changed files with 1 additions and 2 deletions
|
@ -501,7 +501,6 @@ namespace nlsat {
|
||||||
}
|
}
|
||||||
|
|
||||||
void del(bool_var b) {
|
void del(bool_var b) {
|
||||||
TRACE("nlsat", tout << "del " << b << "\n";);
|
|
||||||
SASSERT(m_bwatches[b].empty());
|
SASSERT(m_bwatches[b].empty());
|
||||||
//SASSERT(m_bvalues[b] == l_undef);
|
//SASSERT(m_bvalues[b] == l_undef);
|
||||||
m_num_bool_vars--;
|
m_num_bool_vars--;
|
||||||
|
|
|
@ -260,7 +260,7 @@ namespace smt2 {
|
||||||
throw scanner_exception("invalid empty bit-vector literal", m_line, m_spos);
|
throw scanner_exception("invalid empty bit-vector literal", m_line, m_spos);
|
||||||
return BV_TOKEN;
|
return BV_TOKEN;
|
||||||
}
|
}
|
||||||
else if ('|') {
|
else if (c == '|') {
|
||||||
read_multiline_comment();
|
read_multiline_comment();
|
||||||
return NULL_TOKEN;
|
return NULL_TOKEN;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue