Skip to content

Commit

Permalink
fix #6984
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 14, 2023
1 parent 3c2e97d commit 4406011
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qe/qsat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,7 @@ namespace qe {

void init() {
m_solver = mk_smt2_solver(m, m_params, symbol::null);
m_last_assert = nullptr;
}
void collect_statistics(statistics & st) const {
if (m_solver)
Expand Down Expand Up @@ -633,7 +634,7 @@ namespace qe {
\brief check alternating satisfiability.
Even levels are existential, odd levels are universal.
*/
lbool check_sat() {
lbool check_sat() {
while (true) {
++m_stats.m_num_rounds;
IF_VERBOSE(1, verbose_stream() << "(check-qsat level: " << m_level << " round: " << m_stats.m_num_rounds << ")\n";);
Expand Down

0 comments on commit 4406011

Please sign in to comment.