mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
version inc, bvsort->bitvecsort
This commit is contained in:
parent
7ae78da850
commit
a3010c8875
|
@ -2,7 +2,7 @@
|
||||||
cmake_minimum_required(VERSION 3.4)
|
cmake_minimum_required(VERSION 3.4)
|
||||||
|
|
||||||
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
|
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
|
||||||
project(Z3 VERSION 4.8.12.0 LANGUAGES CXX)
|
project(Z3 VERSION 4.8.13.0 LANGUAGES CXX)
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Project version
|
# Project version
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
from mk_util import *
|
from mk_util import *
|
||||||
|
|
||||||
def init_version():
|
def init_version():
|
||||||
set_version(4, 8, 12, 0)
|
set_version(4, 8, 13, 0)
|
||||||
|
|
||||||
# Z3 Project definition
|
# Z3 Project definition
|
||||||
def init_project_def():
|
def init_project_def():
|
||||||
|
|
|
@ -2031,7 +2031,7 @@ public class Context implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Convert an unsigned bitvector expression to a string.
|
* 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()));
|
return (SeqExpr<CharSort>) Expr.create(this, Native.mkUbvToStr(nCtx(), e.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue