mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
remove ast.h reference
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f5f1d019d8
commit
0268f2243e
|
@ -16,6 +16,7 @@ Revision History:
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#include "util/min_cut.h"
|
#include "util/min_cut.h"
|
||||||
|
#include "util/trace.h"
|
||||||
|
|
||||||
min_cut::min_cut() {
|
min_cut::min_cut() {
|
||||||
// push back two empty vectors for source and sink
|
// push back two empty vectors for source and sink
|
||||||
|
@ -74,7 +75,8 @@ void min_cut::compute_min_cut(unsigned_vector& cut_nodes) {
|
||||||
bool_vector reachable(m_edges.size());
|
bool_vector reachable(m_edges.size());
|
||||||
compute_reachable_nodes(reachable);
|
compute_reachable_nodes(reachable);
|
||||||
|
|
||||||
// find all edges between reachable and unreachable nodes and for each such edge, add corresponding lemma to unsat-core
|
// find all edges between reachable and unreachable nodes and
|
||||||
|
// for each such edge, add corresponding lemma to unsat-core
|
||||||
compute_cut_and_add_lemmas(reachable, cut_nodes);
|
compute_cut_and_add_lemmas(reachable, cut_nodes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +93,8 @@ void min_cut::compute_initial_distances() {
|
||||||
if (!visited[current]) {
|
if (!visited[current]) {
|
||||||
bool exists_unvisited_parent = false;
|
bool exists_unvisited_parent = false;
|
||||||
|
|
||||||
// add unprocessed parents to stack for DFS. If there is at least one unprocessed parent, don't compute the result
|
// add unprocessed parents to stack for DFS. If there is at least
|
||||||
|
// one unprocessed parent, don't compute the result
|
||||||
// for current now, but wait until those unprocessed parents are processed
|
// for current now, but wait until those unprocessed parents are processed
|
||||||
for (auto const& edge : m_edges[current]) {
|
for (auto const& edge : m_edges[current]) {
|
||||||
unsigned parent = edge.node;
|
unsigned parent = edge.node;
|
||||||
|
|
|
@ -19,7 +19,6 @@ Revision History:
|
||||||
#ifndef MIN_CUT_H_
|
#ifndef MIN_CUT_H_
|
||||||
#define MIN_CUT_H_
|
#define MIN_CUT_H_
|
||||||
|
|
||||||
#include "ast/ast.h"
|
|
||||||
#include "util/vector.h"
|
#include "util/vector.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue