3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 09:40:20 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-14 11:54:24 -07:00
parent 6b319f9ac3
commit 47bd06338e
2 changed files with 6 additions and 3 deletions

View file

@ -677,7 +677,10 @@ namespace smt {
template<typename Ext>
bool theory_utvpi<Ext>::enable_edge(edge_id id) {
return (id == null_edge_id) || (m_graph.enable_edge(id) && m_graph.enable_edge(id+1));
return
(id == null_edge_id) ||
(m_graph.enable_edge(id) && m_graph.enable_edge(id+1)) ||
m_non_utvpi_exprs;
}
template<typename Ext>