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:
parent
1bb68a4fc1
commit
576e0b70b2
3 changed files with 25 additions and 7 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue