From c67024d88b575f537e9724d94080eeb786e1e06d Mon Sep 17 00:00:00 2001 From: Jakob Rath Date: Thu, 4 Aug 2022 13:50:35 +0200 Subject: [PATCH] unused for now --- src/math/polysat/solver.cpp | 10 ---------- src/math/polysat/solver.h | 1 - 2 files changed, 11 deletions(-) diff --git a/src/math/polysat/solver.cpp b/src/math/polysat/solver.cpp index cb3a139dd..0c6884db0 100644 --- a/src/math/polysat/solver.cpp +++ b/src/math/polysat/solver.cpp @@ -927,7 +927,6 @@ namespace polysat { m_conflict.reset(); backjump(get_level(v) - 1); learn_lemma(*lemma); - narrow(v); } } @@ -1052,15 +1051,6 @@ namespace polysat { pop_levels(m_level - new_level); } - /** - * placeholder for factoring/gcd common factors - */ - void solver::narrow(pvar v) { - if (is_conflict()) - return; - // TODO - } - // Add lemma to storage void solver::add_clause(clause& clause) { LOG((clause.is_redundant() ? "Lemma: ": "Aux: ") << clause); diff --git a/src/math/polysat/solver.h b/src/math/polysat/solver.h index 2b4c7bd18..d7acd95da 100644 --- a/src/math/polysat/solver.h +++ b/src/math/polysat/solver.h @@ -198,7 +198,6 @@ namespace polysat { void decide(); void pdecide(pvar v); - void narrow(pvar v); void linear_propagate();