mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
fix #2782
This commit is contained in:
parent
2f6a9ba39b
commit
3d874313d3
1 changed files with 3 additions and 0 deletions
|
@ -511,6 +511,9 @@ public:
|
|||
bool enable_edge(edge_id id) {
|
||||
edge& e = m_edges[id];
|
||||
bool r = true;
|
||||
if (!is_feasible()) {
|
||||
return false;
|
||||
}
|
||||
if (!e.is_enabled()) {
|
||||
e.enable(m_timestamp);
|
||||
m_last_enabled_edge = id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue