mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
pwatch
This commit is contained in:
parent
9e90b353e9
commit
f49440690d
1 changed files with 8 additions and 2 deletions
|
@ -1664,8 +1664,14 @@ namespace polysat {
|
|||
out << '@' << s.m_bvars.level(lit);
|
||||
out << " idx:" << s.m_search.get_bool_index(lit);
|
||||
}
|
||||
if (c->is_pwatched())
|
||||
out << " pwatched";
|
||||
if (c->is_pwatched()) {
|
||||
out << " pwatched(";
|
||||
char const* delim = "";
|
||||
for (pvar v : c->vars())
|
||||
if (s.m_pwatch[v].contains(c.get()))
|
||||
out << delim << "v" << v, delim = ",";
|
||||
out << ")";
|
||||
}
|
||||
if (c->is_external())
|
||||
out << " ext";
|
||||
dependency const d = s.m_bvars.dep(lit);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue