Skip to content

Commit

Permalink
fb
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Mar 5, 2024
1 parent c451e4e commit 8f85df0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/sls_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace bv {
auto const& val = ev.wval0(e);
rational n1, n2;

val.get_value(val.bits, n1);
n1 = val.get_value();

VERIFY(bv.is_numeral(r, n2));
if (n1 != n2) {
Expand Down Expand Up @@ -167,7 +167,7 @@ namespace bv {
auto& val1 = ev.wval0(e1);
auto& val2 = ev.wval0(e2);
if (!val1.eq(val2)) {
val2.set(val1.bits);
val2.set(val1.bits());
auto rep2 = ev.try_repair(to_app(e2), idx);
if (!rep2) {
verbose_stream() << "Not repaired " << mk_pp(e2, m) << "\n";
Expand Down

0 comments on commit 8f85df0

Please sign in to comment.