summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-02-26 15:43:07 -0600
committerGitHub <noreply@github.com>2020-02-26 15:43:07 -0600
commit2405b98feeed522d7304207280591a71ee6c319a (patch)
treee3313b4e948a65b224fa0d7df6b75a4dc2a7d170 /src
parent3ef1df6e974ba572a8def512489cd9e47e9d2a2b (diff)
Fix regression (#3827)
Diffstat (limited to 'src')
-rw-r--r--src/theory/bv/theory_bv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index 03f55c059..033a50916 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -622,7 +622,7 @@ int TheoryBV::getReduction(int effort, Node n, Node& nr)
}
else if (n.getKind() == kind::INT_TO_BITVECTOR)
{
- nr = utils::eliminateBv2Nat(n);
+ nr = utils::eliminateInt2Bv(n);
return -1;
}
return 0;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback