3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-05 23:05:46 +00:00

remove another cm

This commit is contained in:
Jakob Rath 2021-09-12 16:08:24 +02:00
parent a8c132f769
commit 00cc81d1a4
3 changed files with 2 additions and 5 deletions

View file

@ -20,7 +20,6 @@ Author:
namespace polysat {
class solver;
class constraint_manager;
class explainer {
friend class conflict_core;
@ -28,7 +27,6 @@ namespace polysat {
void set_solver(solver& s) { m_solver = &s; }
protected:
solver& s() { return *m_solver; }
constraint_manager& cm();
public:
virtual ~explainer() {}
virtual bool try_explain(pvar v, /* vector<signed_constraint> const& cjust_v, */ conflict_core& core) = 0;