3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 11:37:54 +00:00

stub for conflict::find_deps

This commit is contained in:
Jakob Rath 2023-02-01 10:53:49 +01:00
parent 1bb68a4fc1
commit 576e0b70b2
3 changed files with 25 additions and 7 deletions

View file

@ -1318,14 +1318,9 @@ namespace polysat {
}
void solver::unsat_core(dependency_vector& deps) {
verbose_stream() << "WARNING: unsat_core requested but dependency tracking in polysat is TODO\n";
VERIFY(is_conflict());
deps.reset();
LOG("conflict" << m_conflict);
for (auto c : m_conflict) {
auto d = m_bvars.dep(c.blit());
if (d != null_dependency)
deps.push_back(d);
}
m_conflict.find_deps(deps);
}
std::ostream& solver::display(std::ostream& out) const {