3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

Add visualization of spanning trees

This commit is contained in:
Anh-Dung Phan 2013-10-30 16:52:37 -07:00
parent 49aba844b8
commit 01c3dd779b
3 changed files with 112 additions and 59 deletions

View file

@ -85,6 +85,8 @@ namespace smt {
node m_join_node;
numeral m_delta;
unsigned m_step;
// Initialize the network with a feasible spanning tree
void initialize();
@ -105,6 +107,8 @@ namespace smt {
void update_spanning_tree();
std::string display_spanning_tree();
public:
network_flow(graph & g, vector<fin_numeral> const & balances);