3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

more cleanup

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-31 10:54:59 -07:00
parent c2e95bb0c5
commit 683687b153
15 changed files with 2 additions and 508 deletions

View file

@ -31,7 +31,6 @@ Notes:
#include"max_bv_sharing_tactic.h"
#include"simplify_tactic.h"
#include"stopwatch.h"
#include"expr2dot.h"
#include"propagate_values_tactic.h"
#include"sls_tactic.h"
#include"nnf_tactic.h"
@ -1727,17 +1726,6 @@ class sls_tactic : public tactic {
}
void operator()(goal_ref const & g, model_converter_ref & mc) {
//#ifdef _DEBUG
//ptr_vector<expr> es;
//for (unsigned i = 0; i < g->size(); i++)
// es.push_back(g->form(i));
//expr_ref a(m_manager);
//a = m_manager.mk_and(g->size(), es.c_ptr());
//std::ofstream dot_out("top.dot", std::ios::out);
//expr2dot(dot_out, a, m_manager);
//dot_out.close();
//#endif
if (g->inconsistent()) {
mc = 0;
return;