mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
31e16c7d60
commit
9531c5e167
|
@ -1268,7 +1268,8 @@ public:
|
||||||
m_dfs_time[v] = 0;
|
m_dfs_time[v] = 0;
|
||||||
succ.push_back(v);
|
succ.push_back(v);
|
||||||
numeral gamma;
|
numeral gamma;
|
||||||
for (dl_var w : succ) {
|
for (unsigned i = 0; i < succ.size(); ++i) { // succ is updated inside of lopp
|
||||||
|
dl_var w = succ[i];
|
||||||
for (edge_id e_id : m_out_edges[w]) {
|
for (edge_id e_id : m_out_edges[w]) {
|
||||||
edge & e = m_edges[e_id];
|
edge & e = m_edges[e_id];
|
||||||
if (e.is_enabled() && set_gamma(e, gamma).is_zero()) {
|
if (e.is_enabled() && set_gamma(e, gamma).is_zero()) {
|
||||||
|
|
|
@ -757,7 +757,7 @@ namespace smt {
|
||||||
}
|
}
|
||||||
|
|
||||||
TRACE("utvpi",
|
TRACE("utvpi",
|
||||||
tout << "Disparity: " << v1 << "\n";
|
tout << "Disparity: " << v1 << " - " << v2 << "\n";
|
||||||
tout << "decrement: " << zero_v << "\n";
|
tout << "decrement: " << zero_v << "\n";
|
||||||
display(tout);
|
display(tout);
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue