Skip to content

Commit

Permalink
fix #2539
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Sep 6, 2019
1 parent 8ec6219 commit bc723fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/nlsat/nlsat_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,6 @@ namespace nlsat {
}

void del(bool_var b) {
TRACE("nlsat", tout << "del " << b << "\n";);
SASSERT(m_bwatches[b].empty());
//SASSERT(m_bvalues[b] == l_undef);
m_num_bool_vars--;
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/smt2/smt2scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ namespace smt2 {
throw scanner_exception("invalid empty bit-vector literal", m_line, m_spos);
return BV_TOKEN;
}
else if ('|') {
else if (c == '|') {
read_multiline_comment();
return NULL_TOKEN;
}
Expand Down

0 comments on commit bc723fb

Please sign in to comment.