Skip to content

Commit

Permalink
fix #3936
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Apr 13, 2020
1 parent 75a460c commit 84a4d98
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/smt/theory_dense_diff_logic_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,8 @@ namespace smt {

template<typename Ext>
final_check_status theory_dense_diff_logic<Ext>::final_check_eh() {
//fix_zero();
//compute_epsilon();
init_model();
if (assume_eqs(m_var_value_table))
return FC_CONTINUE;
Expand Down Expand Up @@ -768,7 +770,7 @@ namespace smt {
*/
template<typename Ext>
void theory_dense_diff_logic<Ext>::compute_epsilon() {
m_epsilon = rational(1);
m_epsilon = rational(1, 2);
typename edges::const_iterator it = m_edges.begin();
typename edges::const_iterator end = m_edges.end();
// first edge is null
Expand Down

0 comments on commit 84a4d98

Please sign in to comment.