mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 01:13:18 +00:00
fix build errors on ubuntu and gcc
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5098089ee1
commit
7cb9e7381d
13 changed files with 38 additions and 43 deletions
|
@ -264,13 +264,6 @@ class dl_graph {
|
|||
m_assignment[e.get_target()] - m_assignment[e.get_source()] <= e.get_weight();
|
||||
}
|
||||
|
||||
bool is_tight(edge_id e) const {
|
||||
edge const& edge = m_edges[e];
|
||||
return edge.is_enabled() &&
|
||||
m_assignment[edge.get_target()] - m_assignment[e.get_source()] == e.get_weight();
|
||||
}
|
||||
|
||||
|
||||
public:
|
||||
// An assignment is feasible if all edges are feasible.
|
||||
bool is_feasible() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue