Skip to content

Commit

Permalink
fix #6665
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 2, 2023
1 parent 6324db2 commit 5b385bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/java/JavaExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -2275,7 +2275,7 @@ public void stringExample() {
ctx.mkToRe(ctx.mkString("d")));
System.out.println(c);

}
}

public static void main(String[] args)
{
Expand Down
3 changes: 3 additions & 0 deletions src/smt/theory_bv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -946,6 +946,9 @@ namespace smt {
internalize_bv2int(term);
}
return params().m_bv_enable_int2bv2int;
case OP_BSREM: return false;
case OP_BUREM: return false;
case OP_BSMOD: return false;
default:
TRACE("bv_op", tout << "unsupported operator: " << mk_ll_pp(term, m) << "\n";);
UNREACHABLE();
Expand Down

0 comments on commit 5b385bd

Please sign in to comment.