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

Display diff logic optimization and min cost flow in smt2 format

This commit is contained in:
Anh-Dung Phan 2013-11-25 02:15:21 +01:00
parent fff3a1aae5
commit 8fe50ff2d9
2 changed files with 83 additions and 32 deletions

View file

@ -279,13 +279,15 @@ namespace smt {
void update_spanning_tree();
std::string display_spanning_tree();
bool edge_in_tree(edge_id id) const;
bool check_well_formed();
bool check_optimal();
void display(std::ofstream & os);
void display_dual(std::ofstream & os);
void display_spanning_tree(std::ofstream & os);
public:
network_flow(graph & g, vector<fin_numeral> const & balances);