mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
51ed13f96a
commit
80604c7bc5
2 changed files with 10 additions and 5 deletions
|
@ -128,10 +128,11 @@ namespace euf {
|
|||
n->unmark1();
|
||||
|
||||
TRACE("model",
|
||||
for (auto const& d : deps.deps())
|
||||
if (d.m_value) {
|
||||
tout << bpp(d.m_key) << ":\n";
|
||||
for (auto* n : *d.m_value)
|
||||
for (auto * t : deps.deps()) {
|
||||
auto* v = deps.get_dep(t);
|
||||
if (v) {
|
||||
tout << bpp(t) << ":\n";
|
||||
for (auto* n : *v)
|
||||
tout << " " << bpp(n) << "\n";
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue