3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

version inc, bvsort->bitvecsort

This commit is contained in:
Nikolaj Bjorner 2021-07-13 17:14:47 +02:00
parent 7ae78da850
commit a3010c8875
3 changed files with 3 additions and 3 deletions

View file

@ -2031,7 +2031,7 @@ public class Context implements AutoCloseable {
/**
* Convert an unsigned bitvector expression to a string.
*/
public SeqExpr<CharSort> ubvToString(Expr<BvSort> e)
public SeqExpr<CharSort> ubvToString(Expr<BitVecSort> e)
{
return (SeqExpr<CharSort>) Expr.create(this, Native.mkUbvToStr(nCtx(), e.getNativeObject()));
}