We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0b581 commit cd95f2bCopy full SHA for cd95f2b
src/domains/incremental_solver.h
@@ -135,6 +135,9 @@ class incremental_solvert:public messaget
135
contextst contexts;
136
137
protected:
138
+#ifndef DEBUG
139
+ null_message_handlert null_message_handler;
140
+#endif
141
unsigned activation_literal_counter;
142
unsigned domain_number; // ids for each domain instance to make symbols unique
143
bool arith_refinement;
@@ -144,7 +147,11 @@ class incremental_solvert:public messaget
144
147
145
148
void allocate_solvers(bool arith_refinement)
146
149
{
150
+#ifdef DEBUG
151
sat_check=new satcheckt(get_message_handler());
152
+#else
153
+ sat_check=new satcheckt(null_message_handler);
154
155
#if 0
156
sat_check=new satcheck_minisat_no_simplifiert();
157
#endif
0 commit comments