3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 13:06:05 +00:00

Remove conflict::set

This commit is contained in:
Jakob Rath 2022-12-16 14:25:41 +01:00
parent 06e6f27614
commit 3b3636b30e
2 changed files with 1 additions and 20 deletions

View file

@ -102,8 +102,6 @@ namespace polysat {
// Level at which the conflict was discovered
unsigned m_level = UINT_MAX;
void set_impl(signed_constraint c);
public:
conflict(solver& s);
~conflict();
@ -138,11 +136,6 @@ namespace polysat {
/** conflict because there is no viable value for the variable v, by fallback solver */
void init_by_viable_fallback(pvar v, univariate_solver& us);
#if 0
/** replace the current conflict by a single constraint */
void set(signed_constraint c);
#endif
bool contains(signed_constraint c) const { SASSERT(c); return contains(c.blit()); }
bool contains(sat::literal lit) const;
bool contains_pvar(pvar v) const { return m_vars.contains(v); }