diff --git a/.gitignore b/.gitignore
index b7e4a0186..e189a9569 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,6 +43,7 @@ bld_dbg/*
bld_rel/*
bld_dbg_x64/*
bld_rel_x64/*
+.vscode
# Auto generated files.
config.log
config.status
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a086afd71..5934b7c17 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -34,7 +34,7 @@ endif()
################################################################################
set(Z3_VERSION_MAJOR 4)
set(Z3_VERSION_MINOR 8)
-set(Z3_VERSION_PATCH 0)
+set(Z3_VERSION_PATCH 5)
set(Z3_VERSION_TWEAK 0)
set(Z3_VERSION "${Z3_VERSION_MAJOR}.${Z3_VERSION_MINOR}.${Z3_VERSION_PATCH}.${Z3_VERSION_TWEAK}")
set(Z3_FULL_VERSION_STR "${Z3_VERSION}") # Note this might be modified
@@ -99,7 +99,7 @@ set(GIT_DIR "${CMAKE_SOURCE_DIR}/.git")
if (EXISTS "${GIT_DIR}")
# Try to make CMake configure depend on the current git HEAD so that
# a re-configure is triggered when the HEAD changes.
- add_git_dir_dependency("${GIT_DIR}" ADD_GIT_DEP_SUCCESS)
+ add_git_dir_dependency("${CMAKE_SOURCE_DIR}" ADD_GIT_DEP_SUCCESS)
if (ADD_GIT_DEP_SUCCESS)
if (INCLUDE_GIT_HASH)
get_git_head_hash("${GIT_DIR}" Z3GITHASH)
@@ -205,9 +205,6 @@ message(STATUS "PYTHON_EXECUTABLE: ${PYTHON_EXECUTABLE}")
include(${CMAKE_SOURCE_DIR}/cmake/target_arch_detect.cmake)
detect_target_architecture(TARGET_ARCHITECTURE)
message(STATUS "Detected target architecture: ${TARGET_ARCHITECTURE}")
-if ("${TARGET_ARCHITECTURE}" STREQUAL "x86_64")
- list(APPEND Z3_COMPONENT_CXX_DEFINES "-D_AMD64_")
-endif()
################################################################################
@@ -240,7 +237,7 @@ if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
list(APPEND Z3_COMPONENT_CXX_DEFINES "-D_USE_THREAD_LOCAL")
endif()
elseif ("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
- # Does OSX really not need any special flags?
+ # Does macOS really not need any special flags?
message(STATUS "Platform: Darwin")
elseif ("${CMAKE_SYSTEM_NAME}" MATCHES "FreeBSD")
message(STATUS "Platform: FreeBSD")
@@ -380,9 +377,17 @@ endif()
################################################################################
# FIXME: Support ARM "-mfpu=vfp -mfloat-abi=hard"
if (("${TARGET_ARCHITECTURE}" STREQUAL "x86_64") OR ("${TARGET_ARCHITECTURE}" STREQUAL "i686"))
- if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
+ if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel"))
+ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel")
+ # Intel's compiler requires linking with libiomp5
+ list(APPEND Z3_DEPENDENT_LIBS "iomp5")
+ endif()
set(SSE_FLAGS "-mfpmath=sse" "-msse" "-msse2")
# FIXME: Remove "x.." when CMP0054 is set to NEW
+ elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel")
+ set(SSE_FLAGS "-mfpmath=sse" "-msse" "-msse2")
+ # Intel's compiler requires linking with libiomp5
+ list(APPEND Z3_DEPENDENT_LIBS "iomp5")
elseif ("x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xMSVC")
set(SSE_FLAGS "/arch:SSE2")
else()
@@ -417,6 +422,15 @@ list(APPEND Z3_DEPENDENT_LIBS ${CMAKE_THREAD_LIBS_INIT})
################################################################################
include(${CMAKE_SOURCE_DIR}/cmake/compiler_warnings.cmake)
+################################################################################
+# Save Clang optimization records
+################################################################################
+option(SAVE_CLANG_OPTIMIZATION_RECORDS "Enable saving Clang optimization records." OFF)
+
+if (SAVE_CLANG_OPTIMIZATION_RECORDS)
+ z3_add_cxx_flag("-fsave-optimization-record" REQUIRED)
+endif()
+
################################################################################
# If using Ninja, force color output for Clang (and gcc, disabled to check build).
################################################################################
diff --git a/README.md b/README.md
index 447034a84..808b24034 100644
--- a/README.md
+++ b/README.md
@@ -5,16 +5,19 @@ under the [MIT license](LICENSE.txt).
If you are not familiar with Z3, you can start [here](https://github.com/Z3Prover/z3/wiki#background).
+Pre-built binaries for releases are available from [here](https://github.com/Z3Prover/z3/releases),
+and nightly builds from [here](https://github.com/Z3Prover/bin/tree/master/nightly).
+
Z3 can be built using [Visual Studio][1], a [Makefile][2] or using [CMake][3]. It provides
-[bindings for several programming languages][4].
+[bindings for several programming languages][4].
See the [release notes](RELEASE_NOTES) for notes on various stable releases of Z3.
## Build status
-| Windows x64 | Windows x86 | Windows x64 | Ubuntu x64 | Debian x64 | OSX | TravisCI |
-| ----------- | ----------- | ----------- | ---------- | ---------- | --- | -------- |
-[](https://z3build.visualstudio.com/Z3Build/_build/index?definitionId=4) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=4) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=7) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=3) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=5) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=2) | [](https://travis-ci.org/Z3Prover/z3)
+| Windows x64 | Windows x86 | Windows x64 | Ubuntu x64 | Debian x64 | macOS | TravisCI |
+| ----------- | ----------- | ----------- | ---------- | ---------- | ----- | -------- |
+[](https://z3build.visualstudio.com/Z3Build/_build/index?definitionId=4) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=4) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=7) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=3) | [](https://cz3.visualstudio.com/Z3/_build/index?definitionId=5) | [](https://cz3.visualstudio.com/Z3/_build/latest?definitionId=2) | [](https://travis-ci.org/Z3Prover/z3)
[1]: #building-z3-on-windows-using-visual-studio-command-prompt
[2]: #building-z3-using-make-and-gccclang
@@ -75,7 +78,7 @@ A 32 bit build should work similarly (but is untested); the same is true for 32/
By default, it will install z3 executable at ``PREFIX/bin``, libraries at
``PREFIX/lib``, and include files at ``PREFIX/include``, where ``PREFIX``
installation prefix if inferred by the ``mk_make.py`` script. It is usually
-``/usr`` for most Linux distros, and ``/usr/local`` for FreeBSD and OSX. Use
+``/usr`` for most Linux distros, and ``/usr/local`` for FreeBSD and macOS. Use
the ``--prefix=`` command line option to change the install prefix. For example:
```bash
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 3337f098b..ba254db4e 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -1,5 +1,33 @@
RELEASE NOTES
+Version 4.8.4
+=============
+
+- Notes
+ - fixes bugs
+ - a substantial update to how the seq theory solver handles regular
+ expressions. Other performance improvements to the seq solver.
+ - Managed .NET DLLs include dotnet standard 1.4 on supported platforms.
+ - Windows Managed DLLs are strong signed in the released binaries.
+
+Version 4.8.3
+=============
+- New features
+ - Native handling of recursive function definitions, thanks to Simon Cruanes
+ - PB rounding based option for conflict resolution when reasoning about PB constraints.
+ - Access to numeral constants as a double from the native API.
+
+- Notes
+ - fixes several bugs discovered since the 4.8.1 release.
+
+Version 4.8.2
+=============
+- Post-Release.
+
+Version 4.8.1
+=============
+- Release. Bug-fix for 4.8.0
+
Version 4.8.0
=============
@@ -21,7 +49,7 @@ Version 4.8.0
extracting models from apply_result have been replaced.
- An optional mode handles xor constraints using a custom xor propagator.
It is off by default and its value not demonstrated.
- - The SAT solver includes new inprocessing technques that are available during simplification.
+ - The SAT solver includes new inprocessing techniques that are available during simplification.
It performs asymmetric tautology elimination by default, and one can turn on more powerful inprocessing techniques
(known as ACCE, ABCE, CCE). Asymmetric branching also uses features introduced in Lingeling by exploiting binary implication graphs.
Use sat.acce=true to enable the full repertoire of inprocessing methods. By default, clauses that are "eliminated" by acce are tagged
@@ -318,7 +346,7 @@ First source code release (October 2, 2012)
- Added support for numbers in scientific notation at Z3_ast Z3_mk_numeral(__in Z3_context c, __in Z3_string numeral, __in Z3_sort ty).
-- New builtin symbols in the arithmetic theory: pi, euler, sin, cos, tan, asin, acos, atan, sinh, cosh, tanh, asinh, acosh, atanh. The first two are constants, and the others are unary functions. These symbols are not available if the a SMT 2.0 logic is specified (e.g., QF_LRA, QF_NRA, QF_LIA, etc) because these symbols are not defined in these logics. That is, the new symbols are only available if the logic is not specified.
+- New builtin symbols in the arithmetic theory: pi, euler, sin, cos, tan, asin, acos, atan, sinh, cosh, tanh, asinh, acosh, atanh. The first two are constants, and the others are unary functions. These symbols are not available if a SMT 2.0 logic is specified (e.g., QF_LRA, QF_NRA, QF_LIA, etc) because these symbols are not defined in these logics. That is, the new symbols are only available if the logic is not specified.
Version 4.1
===========
diff --git a/cmake/msvc_legacy_quirks.cmake b/cmake/msvc_legacy_quirks.cmake
index 36fe82bb3..a8006e2d3 100644
--- a/cmake/msvc_legacy_quirks.cmake
+++ b/cmake/msvc_legacy_quirks.cmake
@@ -8,13 +8,13 @@
# FIXME: All the commented out defines should be removed once
# we are confident it is correct to not set them.
set(Z3_MSVC_LEGACY_DEFINES
- # Don't set `_DEBUG`. The old build sytem sets this but this
+ # Don't set `_DEBUG`. The old build system sets this but this
# is wrong. MSVC will set this depending on which runtime is being used.
# See https://msdn.microsoft.com/en-us/library/b0084kay.aspx
# _DEBUG
# The old build system only set `UNICODE` and `_UNICODE` for x86_64 release.
- # That seems completly wrong so set it for all configurations.
+ # That seems completely wrong so set it for all configurations.
# According to https://blogs.msdn.microsoft.com/oldnewthing/20040212-00/?p=40643/
# `UNICODE` affects Windows headers and `_UNICODE` affects C runtime header files.
# There is some discussion of this define at https://msdn.microsoft.com/en-us/library/dybsewaf.aspx
@@ -116,7 +116,7 @@ z3_add_cxx_flag("/analyze-" REQUIRED)
################################################################################
# By default CMake enables incremental linking for Debug and RelWithDebInfo
-# builds. The old build sytem disables it for all builds so try to do the same
+# builds. The old build system disables it for all builds so try to do the same
# by changing all configurations if necessary
string(TOUPPER "${available_build_types}" _build_types_as_upper)
foreach (_build_type ${_build_types_as_upper})
diff --git a/cmake/z3_add_component.cmake b/cmake/z3_add_component.cmake
index d87ffbe61..8ab6e045d 100644
--- a/cmake/z3_add_component.cmake
+++ b/cmake/z3_add_component.cmake
@@ -7,7 +7,7 @@ function(z3_expand_dependencies output_var)
if (ARGC LESS 2)
message(FATAL_ERROR "Invalid number of arguments")
endif()
- # Remaing args should be component names
+ # Remaining args should be component names
set(_expanded_deps ${ARGN})
set(_old_number_of_deps 0)
list(LENGTH _expanded_deps _number_of_deps)
@@ -33,7 +33,7 @@ function(z3_add_component_dependencies_to_target target_name)
if (NOT (TARGET ${target_name}))
message(FATAL_ERROR "Target \"${target_name}\" does not exist")
endif()
- # Remaing args should be component names
+ # Remaining args should be component names
set(_expanded_deps ${ARGN})
foreach (dependency ${_expanded_deps})
# Ensure this component's dependencies are built before this component.
@@ -219,7 +219,7 @@ macro(z3_add_component component_name)
# Record this component's dependencies
foreach (dependency ${Z3_MOD_COMPONENT_DEPENDENCIES})
if (NOT (TARGET ${dependency}))
- message(FATAL_ERROR "Component \"${component_name}\" depends on a non existant component \"${dependency}\"")
+ message(FATAL_ERROR "Component \"${component_name}\" depends on a non existent component \"${dependency}\"")
endif()
set_property(GLOBAL APPEND PROPERTY Z3_${component_name}_DEPS "${dependency}")
endforeach()
diff --git a/contrib/ci/README.md b/contrib/ci/README.md
index bd1c52792..d0f336f92 100644
--- a/contrib/ci/README.md
+++ b/contrib/ci/README.md
@@ -1,4 +1,4 @@
-# Continous integration scripts
+# Continuous integration scripts
## TravisCI
@@ -45,7 +45,7 @@ the future.
* `Z3_VERBOSE_BUILD_OUTPUT` - Show compile commands in CMake builds (`0` or `1`)
* `Z3_STATIC_BUILD` - Build Z3 binaries and libraries statically (`0` or `1`)
* `Z3_SYSTEM_TEST_GIT_REVISION` - Git revision of [z3test](https://github.com/Z3Prover/z3test). If empty lastest revision will be used.
-* `Z3_WARNINGS_AS_ERRORS` - Set the `WARNINGS_AS_ERRORS` CMake option pased to Z3 (`OFF`, `ON`, or `SERIOUS_ONLY`)
+* `Z3_WARNINGS_AS_ERRORS` - Set the `WARNINGS_AS_ERRORS` CMake option passed to Z3 (`OFF`, `ON`, or `SERIOUS_ONLY`)
### Linux
diff --git a/doc/design_recfuns.md b/doc/design_recfuns.md
new file mode 100644
index 000000000..89980931e
--- /dev/null
+++ b/doc/design_recfuns.md
@@ -0,0 +1,93 @@
+# Design for handling recursive functions
+
+Main source of inspiration is [Sutter, Köksal & Kuncak 2011],
+as implemented in Leon, but the main
+differences is that we should unroll function definitions directly from the
+inside of Z3, in a backtracking way. Termination and fairness are ensured by
+iterative-deepening on the maximum number of unrollings in a given branch.
+
+## Unfolding
+
+The idea is that every function definition `f(x1…xn) := rhs[x1…xn]` is
+compiled into:
+
+- a list of cases `A_f_i[x1…xn] => f(x1…xn) = rhs_i[x1…xn]`.
+ When `A_f_i[t1…tn]` becomes true in the model, `f(t1…tn)` is said to be
+ *unfolded* and the clause `A_f_i[t1…tn] => f(t1…tn) = rhs_i[t1…tn]`
+ is added as an auxiliary clause.
+- a list of constraints `Γ_f_i[x1…xn] <=> A_f_i[x1…xn]`
+ that states when `A_f_i[x1…xn]` should be true, depending on inputs `x1…xn`.
+ For every term `f(t1…tn)` present in congruence closure, we
+ immediately add all the `Γ_f_i[t1…tn] <=> A_f_i[t1…tn]` as auxiliary clauses
+ (maybe during internalization of `f(t1…tn)`?).
+
+where each `A_f_i[x1…xn]` is a special new predicate representing the
+given case of `f`, and `rhs_i` does not contain any `ite`.
+We assume pattern matching has been compiled to `ite` beforehand.
+
+For example, `fact(n) := if n<2 then 1 else n * fact(n-1)` is compiled into:
+
+- `A_fact_0[n] => fact(n) = 1`
+- `A_fact_1[n] => fact(n) = n * fact(n-1)`
+- `A_fact_0[n] <=> n < 2`
+- `A_fact_1[n] <=> ¬(n < 2)`
+
+The 2 first clauses are only added when `A_fact_0[t]` is true
+(respectively `A_fact_1[t]` is true).
+The 2 other clauses are added as soon as `fact(t)` is internalized.
+
+## Termination
+
+To ensure termination, we define variables:
+
+- `unfold_depth: int`
+- `current_max_unfold_depth: int`
+- `global_max_unfold_depth: int`
+
+and a special literal `[max_depth=$n]` for each `n:int`.
+Solving is done under the local assumption
+`[max_depth=$current_max_unfold_depth]` (this should be handled in some outer
+loop, e.g. in a custom tactic).
+
+Whenever `A_f_i[t1…tn]` becomes true (for any `f`), we increment
+`unfold_depth`. If `unfold_depth > current_max_unfold_depth`, then
+the conflict clause `[max_depth=$current_max_unfold_depth] => Γ => false`
+where `Γ` is the conjunction of all `A_f_i[t1…tn]` true in the trail.
+
+For non-recursive functions, we don't have to increment `unfold_depth`. Some other functions that are known
+
+If the solver answers "SAT", we have a model.
+Otherwise, if `[max_depth=$current_max_unfold_depth]` is part of the
+unsat-core, then we increase `current_max_unfold_depth`.
+If `current_max_unfold_depth == global_max_unfold_depth` then
+we report "UNKNOWN" (reached global depth limit), otherwise we can
+try to `solve()` again with the new assumption (higher depth limit).
+
+## Tactic
+
+there should be a parametrized tactic `funrec(t, n)` where `t` is the tactic
+used to solve (under assumption that depth is limited to `current_max_unfold_depth`)
+and `n` is an integer that is assigned to `global_max_unfold_depth`.
+
+This way, to try and find models for a problem with recursive functions + LIA,
+one could use something like `(funrec (then simplify dl smt) 100)`.
+
+## Expected benefits
+
+This addition to Z3 would bring many benefits compared to current alternatives (Leon, quantifiers, …)
+
+- should be very fast and lightweight
+ (compared to Leon or quantifiers).
+ In particular, every function call is very lightweight even compared to Leon (no need for full model building, followed by unsat core extraction)
+- possibility of answering "SAT" for any `QF_*` fragment +
+ recursive functions
+- makes `define-funs-rec` a first-class citizen of the language, usable to model user-defined theories or to analyze functional
+ programs directly
+
+## Optimizations
+
+- maybe `C_f_i` literals should never be decided on
+ (they can always be propagated).
+ Even stronger: they should not be part of conflicts?
+ (i.e. tune conflict resolution to always resolve
+ these literals away, disregarding their level)
diff --git a/doc/z3api.cfg.in b/doc/z3api.cfg.in
index 9c4b464c2..e58b561c9 100644
--- a/doc/z3api.cfg.in
+++ b/doc/z3api.cfg.in
@@ -944,7 +944,7 @@ HTML_STYLESHEET =
# user-defined cascading style sheet that is included after the standard
# style sheets created by doxygen. Using this option one can overrule
# certain style aspects. This is preferred over using HTML_STYLESHEET
-# since it does not replace the standard style sheet and is therefor more
+# since it does not replace the standard style sheet and is therefore more
# robust against future updates. Doxygen will copy the style sheet file to
# the output directory.
@@ -1711,7 +1711,7 @@ UML_LOOK = NO
# the class node. If there are many fields or methods and many nodes the
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
# threshold limits the number of items for each type to make the size more
-# managable. Set this to 0 for no limit. Note that the threshold may be
+# manageable. Set this to 0 for no limit. Note that the threshold may be
# exceeded by 50% before the limit is enforced.
UML_LIMIT_NUM_FIELDS = 10
diff --git a/examples/c++/CMakeLists.txt b/examples/c++/CMakeLists.txt
index 0a41d6a93..52758889d 100644
--- a/examples/c++/CMakeLists.txt
+++ b/examples/c++/CMakeLists.txt
@@ -7,8 +7,8 @@ find_package(Z3
REQUIRED
CONFIG
# `NO_DEFAULT_PATH` is set so that -DZ3_DIR has to be passed to find Z3.
- # This should prevent us from accidently picking up an installed
- # copy of Z3. This is here to benefit Z3's build sytem when building
+ # This should prevent us from accidentally picking up an installed
+ # copy of Z3. This is here to benefit Z3's build system when building
# this project. When making your own project you probably shouldn't
# use this option.
NO_DEFAULT_PATH
diff --git a/examples/c++/README b/examples/c++/README
index 56775e537..2b3c5affc 100644
--- a/examples/c++/README
+++ b/examples/c++/README
@@ -5,6 +5,6 @@ in the build directory.
This command will create the executable cpp_example.
On Windows, you can just execute it.
-On OSX and Linux, you must install z3 first using
+On macOS and Linux, you must install z3 first using
sudo make install
-OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (OSX) with the build directory. You need that to be able to find the Z3 shared library.
\ No newline at end of file
+OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (macOS) with the build directory. You need that to be able to find the Z3 shared library.
diff --git a/examples/c++/example.cpp b/examples/c++/example.cpp
index 6faeb3edc..ab9c73209 100644
--- a/examples/c++/example.cpp
+++ b/examples/c++/example.cpp
@@ -835,6 +835,17 @@ void tst_visit() {
visit(f);
}
+void tst_numeral() {
+ context c;
+ expr x = c.real_val("1/3");
+ double d = 0;
+ if (!x.is_numeral(d)) {
+ std::cout << x << " is not recognized as a numeral\n";
+ return;
+ }
+ std::cout << x << " is " << d << "\n";
+}
+
void incremental_example1() {
std::cout << "incremental example1\n";
context c;
@@ -1179,6 +1190,20 @@ void mk_model_example() {
std::cout << m.eval(a + b < 2)<< std::endl;
}
+void recfun_example() {
+ std::cout << "recfun example\n";
+ context c;
+ expr x = c.int_const("x");
+ expr y = c.int_const("y");
+ expr b = c.bool_const("b");
+ sort I = c.int_sort();
+ sort B = c.bool_sort();
+ func_decl f = recfun("f", I, B, I);
+ expr_vector args(c);
+ args.push_back(x); args.push_back(b);
+ c.recdef(f, args, ite(b, x, f(x + 1, !b)));
+ prove(f(x,c.bool_val(false)) > x);
+}
int main() {
@@ -1212,6 +1237,7 @@ int main() {
tactic_example9(); std::cout << "\n";
tactic_qe(); std::cout << "\n";
tst_visit(); std::cout << "\n";
+ tst_numeral(); std::cout << "\n";
incremental_example1(); std::cout << "\n";
incremental_example2(); std::cout << "\n";
incremental_example3(); std::cout << "\n";
@@ -1227,6 +1253,7 @@ int main() {
consequence_example(); std::cout << "\n";
parse_example(); std::cout << "\n";
mk_model_example(); std::cout << "\n";
+ recfun_example(); std::cout << "\n";
std::cout << "done\n";
}
catch (exception & ex) {
diff --git a/examples/c/CMakeLists.txt b/examples/c/CMakeLists.txt
index c47a4947a..e45c82d37 100644
--- a/examples/c/CMakeLists.txt
+++ b/examples/c/CMakeLists.txt
@@ -24,8 +24,8 @@ find_package(Z3
REQUIRED
CONFIG
# `NO_DEFAULT_PATH` is set so that -DZ3_DIR has to be passed to find Z3.
- # This should prevent us from accidently picking up an installed
- # copy of Z3. This is here to benefit Z3's build sytem when building
+ # This should prevent us from accidentally picking up an installed
+ # copy of Z3. This is here to benefit Z3's build system when building
# this project. When making your own project you probably shouldn't
# use this option.
NO_DEFAULT_PATH
diff --git a/examples/c/README b/examples/c/README
index 4ca71e0f8..af9dd39f6 100644
--- a/examples/c/README
+++ b/examples/c/README
@@ -5,7 +5,7 @@ in the build directory.
This command will create the executable c_example.
On Windows, you can just execute it.
-On OSX and Linux, you must install z3 first using
+On macOS and Linux, you must install z3 first using
sudo make install
-OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (OSX) with the build directory. You need that to be able to find the Z3 shared library.
+OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (macOS) with the build directory. You need that to be able to find the Z3 shared library.
diff --git a/examples/c/test_capi.c b/examples/c/test_capi.c
index 14e403826..f9c108b92 100644
--- a/examples/c/test_capi.c
+++ b/examples/c/test_capi.c
@@ -241,7 +241,7 @@ void check(Z3_context ctx, Z3_solver s, Z3_lbool expected_result)
The context \c ctx is not modified by this function.
*/
-void prove(Z3_context ctx, Z3_solver s, Z3_ast f, Z3_bool is_valid)
+void prove(Z3_context ctx, Z3_solver s, Z3_ast f, bool is_valid)
{
Z3_model m = 0;
Z3_ast not_f;
@@ -379,6 +379,7 @@ void assert_comm_axiom(Z3_context ctx, Z3_solver s, Z3_func_decl f)
Z3_sort t;
Z3_symbol f_name, t_name;
Z3_ast_vector q;
+ unsigned i;
t = Z3_get_range(ctx, f);
@@ -399,7 +400,7 @@ void assert_comm_axiom(Z3_context ctx, Z3_solver s, Z3_func_decl f)
1, &t_name, &t,
1, &f_name, &f);
printf("assert axiom:\n%s\n", Z3_ast_vector_to_string(ctx, q));
- for (unsigned i = 0; i < Z3_ast_vector_size(ctx, q); ++i) {
+ for (i = 0; i < Z3_ast_vector_size(ctx, q); ++i) {
Z3_solver_assert(ctx, s, Z3_ast_vector_get(ctx, q, i));
}
}
@@ -638,7 +639,7 @@ void display_model(Z3_context c, FILE * out, Z3_model m)
Z3_symbol name;
Z3_func_decl cnst = Z3_model_get_const_decl(c, m, i);
Z3_ast a, v;
- Z3_bool ok;
+ bool ok;
name = Z3_get_decl_name(c, cnst);
display_symbol(c, out, name);
fprintf(out, " = ");
@@ -898,7 +899,7 @@ void prove_example1()
/* prove g(x) = g(y) */
f = Z3_mk_eq(ctx, gx, gy);
printf("prove: x = y implies g(x) = g(y)\n");
- prove(ctx, s, f, Z3_TRUE);
+ prove(ctx, s, f, true);
/* create g(g(x)) */
ggx = mk_unary_app(ctx, g, gx);
@@ -906,7 +907,7 @@ void prove_example1()
/* disprove g(g(x)) = g(y) */
f = Z3_mk_eq(ctx, ggx, gy);
printf("disprove: x = y implies g(g(x)) = g(y)\n");
- prove(ctx, s, f, Z3_FALSE);
+ prove(ctx, s, f, false);
del_solver(ctx, s);
Z3_del_context(ctx);
@@ -978,13 +979,13 @@ void prove_example2()
/* prove z < 0 */
f = Z3_mk_lt(ctx, z, zero);
printf("prove: not(g(g(x) - g(y)) = g(z)), x + z <= y <= x implies z < 0\n");
- prove(ctx, s, f, Z3_TRUE);
+ prove(ctx, s, f, true);
/* disprove z < -1 */
minus_one = mk_int(ctx, -1);
f = Z3_mk_lt(ctx, z, minus_one);
printf("disprove: not(g(g(x) - g(y)) = g(z)), x + z <= y <= x implies z < -1\n");
- prove(ctx, s, f, Z3_FALSE);
+ prove(ctx, s, f, false);
del_solver(ctx, s);
Z3_del_context(ctx);
@@ -1130,7 +1131,7 @@ void quantifier_example1()
/* prove f(x, y) = f(w, v) implies y = v */
p2 = Z3_mk_eq(ctx, y, v);
printf("prove: f(x, y) = f(w, v) implies y = v\n");
- prove(ctx, s, p2, Z3_TRUE);
+ prove(ctx, s, p2, true);
/* disprove f(x, y) = f(w, v) implies x = w */
/* using check2 instead of prove */
@@ -1197,7 +1198,7 @@ void array_example1()
thm = Z3_mk_implies(ctx, antecedent, consequent);
printf("prove: store(a1, i1, v1) = store(a2, i2, v2) implies (i1 = i3 or i2 = i3 or select(a1, i3) = select(a2, i3))\n");
printf("%s\n", Z3_ast_to_string(ctx, thm));
- prove(ctx, s, thm, Z3_TRUE);
+ prove(ctx, s, thm, true);
del_solver(ctx, s);
Z3_del_context(ctx);
@@ -1338,13 +1339,13 @@ void tuple_example1()
eq2 = Z3_mk_eq(ctx, x, one);
thm = Z3_mk_implies(ctx, eq1, eq2);
printf("prove: get_x(mk_pair(x, y)) = 1 implies x = 1\n");
- prove(ctx, s, thm, Z3_TRUE);
+ prove(ctx, s, thm, true);
/* disprove that get_x(mk_pair(x,y)) == 1 implies y = 1*/
eq3 = Z3_mk_eq(ctx, y, one);
thm = Z3_mk_implies(ctx, eq1, eq3);
printf("disprove: get_x(mk_pair(x, y)) = 1 implies y = 1\n");
- prove(ctx, s, thm, Z3_FALSE);
+ prove(ctx, s, thm, false);
}
{
@@ -1365,12 +1366,12 @@ void tuple_example1()
consequent = Z3_mk_eq(ctx, p1, p2);
thm = Z3_mk_implies(ctx, antecedent, consequent);
printf("prove: get_x(p1) = get_x(p2) and get_y(p1) = get_y(p2) implies p1 = p2\n");
- prove(ctx, s, thm, Z3_TRUE);
+ prove(ctx, s, thm, true);
/* disprove that get_x(p1) = get_x(p2) implies p1 = p2 */
thm = Z3_mk_implies(ctx, antecedents[0], consequent);
printf("disprove: get_x(p1) = get_x(p2) implies p1 = p2\n");
- prove(ctx, s, thm, Z3_FALSE);
+ prove(ctx, s, thm, false);
}
{
@@ -1389,14 +1390,14 @@ void tuple_example1()
consequent = Z3_mk_eq(ctx, x, ten);
thm = Z3_mk_implies(ctx, antecedent, consequent);
printf("prove: p2 = update(p1, 0, 10) implies get_x(p2) = 10\n");
- prove(ctx, s, thm, Z3_TRUE);
+ prove(ctx, s, thm, true);
/* disprove that p2 = update(p1, 0, 10) implies get_y(p2) = 10 */
y = mk_unary_app(ctx, get_y_decl, p2);
consequent = Z3_mk_eq(ctx, y, ten);
thm = Z3_mk_implies(ctx, antecedent, consequent);
printf("disprove: p2 = update(p1, 0, 10) implies get_y(p2) = 10\n");
- prove(ctx, s, thm, Z3_FALSE);
+ prove(ctx, s, thm, false);
}
del_solver(ctx, s);
@@ -1428,7 +1429,7 @@ void bitvector_example1()
c2 = Z3_mk_bvsle(ctx, x_minus_ten, zero);
thm = Z3_mk_iff(ctx, c1, c2);
printf("disprove: x - 10 <= 0 IFF x <= 10 for (32-bit) machine integers\n");
- prove(ctx, s, thm, Z3_FALSE);
+ prove(ctx, s, thm, false);
del_solver(ctx, s);
Z3_del_context(ctx);
@@ -1644,6 +1645,7 @@ void parser_example2()
Z3_symbol names[2];
Z3_func_decl decls[2];
Z3_ast_vector f;
+ unsigned i;
printf("\nparser_example2\n");
LOG_MSG("parser_example2");
@@ -1668,7 +1670,7 @@ void parser_example2()
2, names, decls);
printf("formula: %s\n", Z3_ast_vector_to_string(ctx, f));
printf("assert axiom:\n%s\n", Z3_ast_vector_to_string(ctx, f));
- for (unsigned i = 0; i < Z3_ast_vector_size(ctx, f); ++i) {
+ for (i = 0; i < Z3_ast_vector_size(ctx, f); ++i) {
Z3_solver_assert(ctx, s, Z3_ast_vector_get(ctx, f, i));
}
check(ctx, s, Z3_L_TRUE);
@@ -1695,7 +1697,7 @@ void parser_example3()
LOG_MSG("parser_example3");
cfg = Z3_mk_config();
- /* See quantifer_example1 */
+ /* See quantifier_example1 */
Z3_set_param_value(cfg, "model", "true");
ctx = mk_context_custom(cfg, error_handler);
Z3_del_config(cfg);
@@ -1715,7 +1717,7 @@ void parser_example3()
0, 0, 0,
1, &g_name, &g);
printf("formula: %s\n", Z3_ast_vector_to_string(ctx, thm));
- prove(ctx, s, Z3_ast_vector_get(ctx, thm, 0), Z3_TRUE);
+ prove(ctx, s, Z3_ast_vector_get(ctx, thm, 0), true);
del_solver(ctx, s);
Z3_del_context(ctx);
@@ -1779,13 +1781,13 @@ void numeral_example() {
n2 = Z3_mk_numeral(ctx, "0.5", real_ty);
printf("Numerals n1:%s", Z3_ast_to_string(ctx, n1));
printf(" n2:%s\n", Z3_ast_to_string(ctx, n2));
- prove(ctx, s, Z3_mk_eq(ctx, n1, n2), Z3_TRUE);
+ prove(ctx, s, Z3_mk_eq(ctx, n1, n2), true);
n1 = Z3_mk_numeral(ctx, "-1/3", real_ty);
n2 = Z3_mk_numeral(ctx, "-0.33333333333333333333333333333333333333333333333333", real_ty);
printf("Numerals n1:%s", Z3_ast_to_string(ctx, n1));
printf(" n2:%s\n", Z3_ast_to_string(ctx, n2));
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, n1, n2)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, n1, n2)), true);
del_solver(ctx, s);
Z3_del_context(ctx);
}
@@ -1850,14 +1852,14 @@ void enum_example() {
orange = Z3_mk_app(ctx, enum_consts[2], 0, 0);
/* Apples are different from oranges */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, apple, orange)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, apple, orange)), true);
/* Apples pass the apple test */
- prove(ctx, s, Z3_mk_app(ctx, enum_testers[0], 1, &apple), Z3_TRUE);
+ prove(ctx, s, Z3_mk_app(ctx, enum_testers[0], 1, &apple), true);
/* Oranges fail the apple test */
- prove(ctx, s, Z3_mk_app(ctx, enum_testers[0], 1, &orange), Z3_FALSE);
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_app(ctx, enum_testers[0], 1, &orange)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_app(ctx, enum_testers[0], 1, &orange), false);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_app(ctx, enum_testers[0], 1, &orange)), true);
fruity = mk_var(ctx, "fruity", fruit);
@@ -1866,7 +1868,7 @@ void enum_example() {
ors[1] = Z3_mk_eq(ctx, fruity, banana);
ors[2] = Z3_mk_eq(ctx, fruity, orange);
- prove(ctx, s, Z3_mk_or(ctx, 3, ors), Z3_TRUE);
+ prove(ctx, s, Z3_mk_or(ctx, 3, ors), true);
/* delete logical context */
del_solver(ctx, s);
@@ -1898,41 +1900,41 @@ void list_example() {
l2 = mk_binary_app(ctx, cons_decl, mk_int(ctx, 2), nil);
/* nil != cons(1, nil) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil, l1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil, l1)), true);
/* cons(2,nil) != cons(1, nil) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, l1, l2)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, l1, l2)), true);
/* cons(x,nil) = cons(y, nil) => x = y */
x = mk_var(ctx, "x", int_ty);
y = mk_var(ctx, "y", int_ty);
l1 = mk_binary_app(ctx, cons_decl, x, nil);
l2 = mk_binary_app(ctx, cons_decl, y, nil);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), true);
/* cons(x,u) = cons(x, v) => u = v */
u = mk_var(ctx, "u", int_list);
v = mk_var(ctx, "v", int_list);
l1 = mk_binary_app(ctx, cons_decl, x, u);
l2 = mk_binary_app(ctx, cons_decl, y, v);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, u, v)), Z3_TRUE);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, u, v)), true);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), true);
/* is_nil(u) or is_cons(u) */
ors[0] = Z3_mk_app(ctx, is_nil_decl, 1, &u);
ors[1] = Z3_mk_app(ctx, is_cons_decl, 1, &u);
- prove(ctx, s, Z3_mk_or(ctx, 2, ors), Z3_TRUE);
+ prove(ctx, s, Z3_mk_or(ctx, 2, ors), true);
/* occurs check u != cons(x,u) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, u, l1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, u, l1)), true);
/* destructors: is_cons(u) => u = cons(head(u),tail(u)) */
fml1 = Z3_mk_eq(ctx, u, mk_binary_app(ctx, cons_decl, mk_unary_app(ctx, head_decl, u), mk_unary_app(ctx, tail_decl, u)));
fml = Z3_mk_implies(ctx, Z3_mk_app(ctx, is_cons_decl, 1, &u), fml1);
printf("Formula %s\n", Z3_ast_to_string(ctx, fml));
- prove(ctx, s, fml, Z3_TRUE);
+ prove(ctx, s, fml, true);
- prove(ctx, s, fml1, Z3_FALSE);
+ prove(ctx, s, fml1, false);
/* delete logical context */
del_solver(ctx, s);
@@ -1980,7 +1982,7 @@ void tree_example() {
l2 = mk_binary_app(ctx, cons_decl, l1, nil);
/* nil != cons(nil, nil) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil, l1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil, l1)), true);
/* cons(x,u) = cons(x, v) => u = v */
u = mk_var(ctx, "u", cell);
@@ -1989,24 +1991,24 @@ void tree_example() {
y = mk_var(ctx, "y", cell);
l1 = mk_binary_app(ctx, cons_decl, x, u);
l2 = mk_binary_app(ctx, cons_decl, y, v);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, u, v)), Z3_TRUE);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, u, v)), true);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), true);
/* is_nil(u) or is_cons(u) */
ors[0] = Z3_mk_app(ctx, is_nil_decl, 1, &u);
ors[1] = Z3_mk_app(ctx, is_cons_decl, 1, &u);
- prove(ctx, s, Z3_mk_or(ctx, 2, ors), Z3_TRUE);
+ prove(ctx, s, Z3_mk_or(ctx, 2, ors), true);
/* occurs check u != cons(x,u) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, u, l1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, u, l1)), true);
/* destructors: is_cons(u) => u = cons(car(u),cdr(u)) */
fml1 = Z3_mk_eq(ctx, u, mk_binary_app(ctx, cons_decl, mk_unary_app(ctx, car_decl, u), mk_unary_app(ctx, cdr_decl, u)));
fml = Z3_mk_implies(ctx, Z3_mk_app(ctx, is_cons_decl, 1, &u), fml1);
printf("Formula %s\n", Z3_ast_to_string(ctx, fml));
- prove(ctx, s, fml, Z3_TRUE);
+ prove(ctx, s, fml, true);
- prove(ctx, s, fml1, Z3_FALSE);
+ prove(ctx, s, fml1, false);
/* delete logical context */
del_solver(ctx, s);
@@ -2098,8 +2100,8 @@ void forest_example() {
/* nil != cons(nil,nil) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil1, f1)), Z3_TRUE);
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil2, t1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil1, f1)), true);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil2, t1)), true);
/* cons(x,u) = cons(x, v) => u = v */
@@ -2109,16 +2111,16 @@ void forest_example() {
y = mk_var(ctx, "y", tree);
l1 = mk_binary_app(ctx, cons1_decl, x, u);
l2 = mk_binary_app(ctx, cons1_decl, y, v);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, u, v)), Z3_TRUE);
- prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, u, v)), true);
+ prove(ctx, s, Z3_mk_implies(ctx, Z3_mk_eq(ctx,l1,l2), Z3_mk_eq(ctx, x, y)), true);
/* is_nil(u) or is_cons(u) */
ors[0] = Z3_mk_app(ctx, is_nil1_decl, 1, &u);
ors[1] = Z3_mk_app(ctx, is_cons1_decl, 1, &u);
- prove(ctx, s, Z3_mk_or(ctx, 2, ors), Z3_TRUE);
+ prove(ctx, s, Z3_mk_or(ctx, 2, ors), true);
/* occurs check u != cons(x,u) */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, u, l1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, u, l1)), true);
/* delete logical context */
del_solver(ctx, s);
@@ -2191,19 +2193,19 @@ void binary_tree_example() {
Z3_ast node3 = Z3_mk_app(ctx, node_decl, 3, args3);
/* prove that nil != node1 */
- prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil, node1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, Z3_mk_eq(ctx, nil, node1)), true);
/* prove that nil = left(node1) */
- prove(ctx, s, Z3_mk_eq(ctx, nil, mk_unary_app(ctx, left_decl, node1)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_eq(ctx, nil, mk_unary_app(ctx, left_decl, node1)), true);
/* prove that node1 = right(node3) */
- prove(ctx, s, Z3_mk_eq(ctx, node1, mk_unary_app(ctx, right_decl, node3)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_eq(ctx, node1, mk_unary_app(ctx, right_decl, node3)), true);
/* prove that !is-nil(node2) */
- prove(ctx, s, Z3_mk_not(ctx, mk_unary_app(ctx, is_nil_decl, node2)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_not(ctx, mk_unary_app(ctx, is_nil_decl, node2)), true);
/* prove that value(node2) >= 0 */
- prove(ctx, s, Z3_mk_ge(ctx, mk_unary_app(ctx, value_decl, node2), mk_int(ctx, 0)), Z3_TRUE);
+ prove(ctx, s, Z3_mk_ge(ctx, mk_unary_app(ctx, value_decl, node2), mk_int(ctx, 0)), true);
}
/* delete logical context */
@@ -2302,7 +2304,7 @@ typedef struct {
// IMPORTANT: the fields m_answer_literals, m_retracted and m_num_answer_literals must be saved/restored
// if push/pop operations are performed on m_context.
Z3_ast m_answer_literals[MAX_RETRACTABLE_ASSERTIONS];
- Z3_bool m_retracted[MAX_RETRACTABLE_ASSERTIONS]; // true if the assertion was retracted.
+ bool m_retracted[MAX_RETRACTABLE_ASSERTIONS]; // true if the assertion was retracted.
unsigned m_num_answer_literals;
} Z3_ext_context_struct;
@@ -2345,7 +2347,7 @@ unsigned assert_retractable_cnstr(Z3_ext_context ctx, Z3_ast c) {
ans_lit = Z3_mk_fresh_const(ctx->m_context, "k", ty);
result = ctx->m_num_answer_literals;
ctx->m_answer_literals[result] = ans_lit;
- ctx->m_retracted[result] = Z3_FALSE;
+ ctx->m_retracted[result] = false;
ctx->m_num_answer_literals++;
// assert: c OR (not ans_lit)
args[0] = c;
@@ -2361,7 +2363,7 @@ void retract_cnstr(Z3_ext_context ctx, unsigned id) {
if (id >= ctx->m_num_answer_literals) {
exitf("invalid constraint id.");
}
- ctx->m_retracted[id] = Z3_TRUE;
+ ctx->m_retracted[id] = true;
}
/**
@@ -2371,7 +2373,7 @@ void reassert_cnstr(Z3_ext_context ctx, unsigned id) {
if (id >= ctx->m_num_answer_literals) {
exitf("invalid constraint id.");
}
- ctx->m_retracted[id] = Z3_FALSE;
+ ctx->m_retracted[id] = false;
}
/**
@@ -2385,7 +2387,7 @@ Z3_lbool ext_check(Z3_ext_context ctx) {
unsigned core_size;
unsigned i;
for (i = 0; i < ctx->m_num_answer_literals; i++) {
- if (ctx->m_retracted[i] == Z3_FALSE) {
+ if (ctx->m_retracted[i] == false) {
// Since the answer literal was not retracted, we added it as an assumption.
// Recall that we assert (C \/ (not ans_lit)). Therefore, adding ans_lit as an assumption has the effect of "asserting" C.
// If the constraint was "retracted" (ctx->m_retracted[i] == Z3_true), then we don't really need to add (not ans_lit) as an assumption.
@@ -2870,19 +2872,19 @@ void mk_model_example() {
/*num_args=*/2,
/*args=*/addArgs);
Z3_ast aPlusBEval = NULL;
- Z3_bool aPlusBEvalSuccess =
+ bool aPlusBEvalSuccess =
Z3_model_eval(ctx, m, aPlusB,
- /*model_completion=*/Z3_FALSE, &aPlusBEval);
- if (aPlusBEvalSuccess != Z3_TRUE) {
+ /*model_completion=*/false, &aPlusBEval);
+ if (aPlusBEvalSuccess != true) {
printf("Failed to evaluate model\n");
exit(1);
}
{
int aPlusBValue = 0;
- Z3_bool getAPlusBValueSuccess =
+ bool getAPlusBValueSuccess =
Z3_get_numeral_int(ctx, aPlusBEval, &aPlusBValue);
- if (getAPlusBValueSuccess != Z3_TRUE) {
+ if (getAPlusBValueSuccess != true) {
printf("Failed to get integer value for a+b\n");
exit(1);
}
@@ -2904,18 +2906,18 @@ void mk_model_example() {
/*num_args=*/3,
/*args=*/arrayAddArgs);
Z3_ast arrayAddEval = NULL;
- Z3_bool arrayAddEvalSuccess =
+ bool arrayAddEvalSuccess =
Z3_model_eval(ctx, m, arrayAdd,
- /*model_completion=*/Z3_FALSE, &arrayAddEval);
- if (arrayAddEvalSuccess != Z3_TRUE) {
+ /*model_completion=*/false, &arrayAddEval);
+ if (arrayAddEvalSuccess != true) {
printf("Failed to evaluate model\n");
exit(1);
}
{
int arrayAddValue = 0;
- Z3_bool getArrayAddValueSuccess =
+ bool getArrayAddValueSuccess =
Z3_get_numeral_int(ctx, arrayAddEval, &arrayAddValue);
- if (getArrayAddValueSuccess != Z3_TRUE) {
+ if (getArrayAddValueSuccess != true) {
printf("Failed to get integer value for c[0] + c[1] + c[2]\n");
exit(1);
}
diff --git a/examples/dotnet/Program.cs b/examples/dotnet/Program.cs
index 230aacf6f..47906add4 100644
--- a/examples/dotnet/Program.cs
+++ b/examples/dotnet/Program.cs
@@ -363,10 +363,10 @@ namespace test_mapi
Console.WriteLine("Model = " + s.Model);
- Console.WriteLine("Interpretation of MyArray:\n" + s.Model.FuncInterp(aex.FuncDecl));
+ //Console.WriteLine("Interpretation of MyArray:\n" + s.Model.ConstInterp(aex.FuncDecl));
Console.WriteLine("Interpretation of x:\n" + s.Model.ConstInterp(xc));
Console.WriteLine("Interpretation of f:\n" + s.Model.FuncInterp(fd));
- Console.WriteLine("Interpretation of MyArray as Term:\n" + s.Model.FuncInterp(aex.FuncDecl));
+ //Console.WriteLine("Interpretation of MyArray as Term:\n" + s.Model.ConstInterp(aex.FuncDecl));
}
///
diff --git a/examples/java/README b/examples/java/README
index 1939afc49..d3ff93fe0 100644
--- a/examples/java/README
+++ b/examples/java/README
@@ -10,5 +10,5 @@ which can be run on Windows via
On Linux and FreeBSD, we must use
LD_LIBRARY_PATH=. java -cp com.microsoft.z3.jar:. JavaExample
-On OSX, the corresponding option is DYLD_LIBRARY_PATH:
+On macOS, the corresponding option is DYLD_LIBRARY_PATH:
DYLD_LIBRARY_PATH=. java -cp com.microsoft.z3.jar:. JavaExample
diff --git a/examples/maxsat/CMakeLists.txt b/examples/maxsat/CMakeLists.txt
index 019243ecf..e59486297 100644
--- a/examples/maxsat/CMakeLists.txt
+++ b/examples/maxsat/CMakeLists.txt
@@ -11,8 +11,8 @@ find_package(Z3
REQUIRED
CONFIG
# `NO_DEFAULT_PATH` is set so that -DZ3_DIR has to be passed to find Z3.
- # This should prevent us from accidently picking up an installed
- # copy of Z3. This is here to benefit Z3's build sytem when building
+ # This should prevent us from accidentally picking up an installed
+ # copy of Z3. This is here to benefit Z3's build system when building
# this project. When making your own project you probably shouldn't
# use this option.
NO_DEFAULT_PATH
diff --git a/examples/maxsat/README b/examples/maxsat/README
index 6c24da66b..8c7d3b0f7 100644
--- a/examples/maxsat/README
+++ b/examples/maxsat/README
@@ -5,8 +5,8 @@ in the build directory.
This command will create the executable maxsat.
On Windows, you can just execute it.
-On OSX and Linux, you must install z3 first using
+On macOS and Linux, you must install z3 first using
sudo make install
-OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (OSX) with the build directory. You need that to be able to find the Z3 shared library.
+OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (macOS) with the build directory. You need that to be able to find the Z3 shared library.
This directory contains a test file (ex.smt) that can be used as input for the maxsat test application.
diff --git a/examples/maxsat/maxsat.c b/examples/maxsat/maxsat.c
index 5696f5b89..1f9ae165f 100644
--- a/examples/maxsat/maxsat.c
+++ b/examples/maxsat/maxsat.c
@@ -138,7 +138,7 @@ void assert_hard_constraints(Z3_context ctx, Z3_solver s, unsigned num_cnstrs, Z
/**
\brief Assert soft constraints stored in the given array.
- This funtion will assert each soft-constraint C_i as (C_i or k_i) where k_i is a fresh boolean variable.
+ This function will assert each soft-constraint C_i as (C_i or k_i) where k_i is a fresh boolean variable.
It will also return an array containing these fresh variables.
*/
Z3_ast * assert_soft_constraints(Z3_context ctx, Z3_solver s, unsigned num_cnstrs, Z3_ast * cnstrs)
@@ -382,7 +382,7 @@ unsigned get_num_disabled_soft_constraints(Z3_context ctx, Z3_model m, unsigned
Z3_ast t = Z3_mk_true(ctx);
for (i = 0; i < num_soft_cnstrs; i++) {
Z3_ast val;
- if (Z3_model_eval(ctx, m, aux_vars[i], 1, &val) == Z3_TRUE) {
+ if (Z3_model_eval(ctx, m, aux_vars[i], 1, &val) == true) {
// printf("%s", Z3_ast_to_string(ctx, aux_vars[i]));
// printf(" -> %s\n", Z3_ast_to_string(ctx, val));
if (Z3_is_eq_ast(ctx, val, t)) {
@@ -565,7 +565,7 @@ int fu_malik_maxsat(Z3_context ctx, Z3_solver s, unsigned num_hard_cnstrs, Z3_as
/**
\brief Finds the maximal number of assumptions that can be satisfied.
- An assumption is any formula preceeded with the :assumption keyword.
+ An assumption is any formula preceded with the :assumption keyword.
"Hard" constraints can be supported by using the :formula keyword.
Input: file in SMT-LIB format, and MaxSAT algorithm to be used: 0 - Naive, 1 - Fu&Malik's algo.
diff --git a/examples/ml/README b/examples/ml/README
index 1c474fe33..9797b85e3 100644
--- a/examples/ml/README
+++ b/examples/ml/README
@@ -20,4 +20,4 @@ ocamlfind ocamlopt -o ml_example -package Z3 -linkpkg ml_example.ml
Note that the resulting binaries depend on the shared z3 library
(libz3.dll/.so/.dylb), which needs to be in the PATH (Windows), LD_LIBRARY_PATH
-(Linux), or DYLD_LIBRARY_PATH (OSX).
+(Linux), or DYLD_LIBRARY_PATH (macOS).
diff --git a/examples/msf/SolverFoundation.Plugin.Z3/Z3BaseSolver.cs b/examples/msf/SolverFoundation.Plugin.Z3/Z3BaseSolver.cs
index 1c82406be..5297d3e67 100644
--- a/examples/msf/SolverFoundation.Plugin.Z3/Z3BaseSolver.cs
+++ b/examples/msf/SolverFoundation.Plugin.Z3/Z3BaseSolver.cs
@@ -226,7 +226,7 @@ namespace Microsoft.SolverFoundation.Plugin.Z3
}
///
- /// Adds a MSF variable with the coresponding assertion to the Z3 variables.
+ /// Adds a MSF variable with the corresponding assertion to the Z3 variables.
///
/// The MSF id of the variable
internal void AddVariable(int vid)
diff --git a/examples/msf/SolverFoundation.Plugin.Z3/Z3MILPSolver.cs b/examples/msf/SolverFoundation.Plugin.Z3/Z3MILPSolver.cs
index f3a8f9f2c..4f8cdc759 100644
--- a/examples/msf/SolverFoundation.Plugin.Z3/Z3MILPSolver.cs
+++ b/examples/msf/SolverFoundation.Plugin.Z3/Z3MILPSolver.cs
@@ -33,14 +33,14 @@ namespace Microsoft.SolverFoundation.Plugin.Z3
#region Solver construction and destruction
- /// Constructor that initializes the base clases
+ /// Constructor that initializes the base classes
public Z3MILPSolver() : base(null)
{
_result = LinearResult.Feasible;
_solver = new Z3BaseSolver(this);
}
- /// Constructor that initializes the base clases
+ /// Constructor that initializes the base classes
public Z3MILPSolver(ISolverEnvironment context) : this() { }
///
diff --git a/examples/msf/SolverFoundation.Plugin.Z3/Z3TermSolver.cs b/examples/msf/SolverFoundation.Plugin.Z3/Z3TermSolver.cs
index 530df3394..de91c7b6e 100644
--- a/examples/msf/SolverFoundation.Plugin.Z3/Z3TermSolver.cs
+++ b/examples/msf/SolverFoundation.Plugin.Z3/Z3TermSolver.cs
@@ -29,13 +29,13 @@ namespace Microsoft.SolverFoundation.Plugin.Z3
private NonlinearResult _result;
private Z3BaseSolver _solver;
- /// Constructor that initializes the base clases
+ /// Constructor that initializes the base classes
public Z3TermSolver() : base(null)
{
_solver = new Z3BaseSolver(this);
}
- /// Constructor that initializes the base clases
+ /// Constructor that initializes the base classes
public Z3TermSolver(ISolverEnvironment context) : this() { }
///
diff --git a/examples/python/data/horn1.smt2 b/examples/python/data/horn1.smt2
new file mode 100644
index 000000000..20d043534
--- /dev/null
+++ b/examples/python/data/horn1.smt2
@@ -0,0 +1,50 @@
+(declare-rel Goal (Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool))
+(declare-rel Invariant (Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool))
+(declare-var A Bool)
+(declare-var B Bool)
+(declare-var C Bool)
+(declare-var D Bool)
+(declare-var E Bool)
+(declare-var F Bool)
+(declare-var G Bool)
+(declare-var H Bool)
+(declare-var I Bool)
+(declare-var J Bool)
+(declare-var K Bool)
+(declare-var L Bool)
+(declare-var M Bool)
+(declare-var N Bool)
+(declare-var O Bool)
+(declare-var P Bool)
+(declare-var Q Bool)
+(declare-var R Bool)
+(declare-var S Bool)
+(declare-var T Bool)
+(declare-var U Bool)
+(declare-var V Bool)
+(declare-var W Bool)
+(declare-var X Bool)
+(rule (=> (not (or L K J I H G F E D C B A)) (Invariant L K J I H G F E D C B A)))
+(rule (let ((a!1 (and (Invariant X W V U T S R Q P O N M)
+ (=> (not (and true)) (not F))
+ (=> (not (and true)) (not E))
+ (=> (not (and W)) (not D))
+ (=> (not (and W)) (not C))
+ (=> (not (and U)) (not B))
+ (=> (not (and U)) (not A))
+ (= L (xor F X))
+ (= K (xor E W))
+ (= J (xor D V))
+ (= I (xor C U))
+ (= H (xor B T))
+ (= G (xor A S))
+ (=> D (not E))
+ (=> C (not E))
+ (=> B (not C))
+ (=> A (not C))
+ ((_ at-most 5) L K J I H G))))
+ (=> a!1 (Invariant L K J I H G F E D C B A))))
+(rule (=> (and (Invariant L K J I H G F E D C B A) L (not K) J (not I) H G)
+ (Goal L K J I H G F E D C B A)))
+
+(query Goal)
\ No newline at end of file
diff --git a/examples/python/data/horn2.smt2 b/examples/python/data/horn2.smt2
new file mode 100644
index 000000000..478c39d5f
--- /dev/null
+++ b/examples/python/data/horn2.smt2
@@ -0,0 +1,44 @@
+(declare-rel Invariant (Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool))
+(declare-rel Goal (Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool))
+(declare-var A Bool)
+(declare-var B Bool)
+(declare-var C Bool)
+(declare-var D Bool)
+(declare-var E Bool)
+(declare-var F Bool)
+(declare-var G Bool)
+(declare-var H Bool)
+(declare-var I Bool)
+(declare-var J Bool)
+(declare-var K Bool)
+(declare-var L Bool)
+(declare-var M Bool)
+(declare-var N Bool)
+(declare-var O Bool)
+(declare-var P Bool)
+(declare-var Q Bool)
+(declare-var R Bool)
+(declare-var S Bool)
+(declare-var T Bool)
+(rule (=> (not (or J I H G F E D C B A)) (Invariant J I H G F E D C B A)))
+(rule (let ((a!1 (and (Invariant T S R Q P O N M L K)
+ (=> (not (and true)) (not E))
+ (=> (not (and T)) (not D))
+ (=> (not (and S)) (not C))
+ (=> (not (and R)) (not B))
+ (=> (not (and Q)) (not A))
+ (= J (xor E T))
+ (= I (xor D S))
+ (= H (xor C R))
+ (= G (xor B Q))
+ (= F (xor A P))
+ (=> D (not E))
+ (=> C (not D))
+ (=> B (not C))
+ (=> A (not B))
+ ((_ at-most 3) J I H G F))))
+ (=> a!1 (Invariant J I H G F E D C B A))))
+(rule (=> (and (Invariant J I H G F E D C B A) (not J) (not I) (not H) (not G) F)
+ (Goal J I H G F E D C B A)))
+
+(query Goal)
diff --git a/examples/python/data/horn3.smt2 b/examples/python/data/horn3.smt2
new file mode 100644
index 000000000..873784e43
--- /dev/null
+++ b/examples/python/data/horn3.smt2
@@ -0,0 +1,17 @@
+(declare-rel Invariant (Bool))
+(declare-rel Goal ())
+(declare-var l0 Bool)
+(declare-var l2 Bool)
+(declare-var l4 Bool)
+(declare-var l6 Bool)
+(declare-var l8 Bool)
+(declare-var l10 Bool)
+(rule (=> (not (or l4)) (Invariant l4)))
+(rule (=> (and (Invariant l4)
+ (= (and (not l4) (not l2)) l6)
+ (= (and l4 l2) l8)
+ (= (and (not l8) (not l6)) l10)
+ ) (Invariant l10)))
+(rule (=> (and (Invariant l4)
+ l4) Goal))
+(query Goal)
diff --git a/examples/python/data/horn4.smt2 b/examples/python/data/horn4.smt2
new file mode 100644
index 000000000..0a64b41db
--- /dev/null
+++ b/examples/python/data/horn4.smt2
@@ -0,0 +1,99 @@
+(declare-rel Invariant (Bool Bool Bool Bool Bool Bool))
+(declare-rel Goal ())
+(declare-var l0 Bool)
+(declare-var l2 Bool)
+(declare-var l4 Bool)
+(declare-var l6 Bool)
+(declare-var l8 Bool)
+(declare-var l10 Bool)
+(declare-var l12 Bool)
+(declare-var l14 Bool)
+(declare-var l16 Bool)
+(declare-var l18 Bool)
+(declare-var l20 Bool)
+(declare-var l22 Bool)
+(declare-var l24 Bool)
+(declare-var l26 Bool)
+(declare-var l28 Bool)
+(declare-var l30 Bool)
+(declare-var l32 Bool)
+(declare-var l34 Bool)
+(declare-var l36 Bool)
+(declare-var l38 Bool)
+(declare-var l40 Bool)
+(declare-var l42 Bool)
+(declare-var l44 Bool)
+(declare-var l46 Bool)
+(declare-var l48 Bool)
+(declare-var l50 Bool)
+(declare-var l52 Bool)
+(declare-var l54 Bool)
+(declare-var l56 Bool)
+(declare-var l58 Bool)
+(declare-var l60 Bool)
+(declare-var l62 Bool)
+(declare-var l64 Bool)
+(declare-var l66 Bool)
+(declare-var l68 Bool)
+(declare-var l70 Bool)
+(declare-var l72 Bool)
+(declare-var l74 Bool)
+(declare-var l76 Bool)
+(declare-var l78 Bool)
+(declare-var l80 Bool)
+(declare-var l82 Bool)
+(declare-var l84 Bool)
+(declare-var l86 Bool)
+(rule (=> (not (or l4 l6 l8 l10 l12 l14)) (Invariant l4 l6 l8 l10 l12 l14)))
+(rule (=> (and (Invariant l4 l6 l8 l10 l12 l14)
+ (= (and l6 (not l4)) l16)
+ (= (and l10 (not l8)) l18)
+ (= (and l18 l16) l20)
+ (= (and (not l14) (not l12)) l22)
+ (= (and l22 l20) l24)
+ (= (and (not l24) (not l4)) l26)
+ (= (and (not l6) l4) l28)
+ (= (and (not l28) (not l16)) l30)
+ (= (and (not l30) (not l24)) l32)
+ (= (and l6 l4) l34)
+ (= (and (not l34) l8) l36)
+ (= (and l34 (not l8)) l38)
+ (= (and (not l38) (not l36)) l40)
+ (= (and (not l40) (not l24)) l42)
+ (= (and l34 l8) l44)
+ (= (and (not l44) l10) l46)
+ (= (and l44 (not l10)) l48)
+ (= (and (not l48) (not l46)) l50)
+ (= (and (not l50) (not l24)) l52)
+ (= (and l10 l8) l54)
+ (= (and l54 l34) l56)
+ (= (and (not l56) l12) l58)
+ (= (and l56 (not l12)) l60)
+ (= (and (not l60) (not l58)) l62)
+ (= (and (not l62) (not l24)) l64)
+ (= (and l56 l12) l66)
+ (= (and (not l66) l14) l68)
+ (= (and l66 (not l14)) l70)
+ (= (and (not l70) (not l68)) l72)
+ (= (and (not l72) (not l24)) l74)
+ (= (and l6 l4) l76)
+ (= (and (not l76) l18) l78)
+ (= (and (not l78) l10) l80)
+ (= (and (not l80) l22) l82)
+ (= (and (not l82) (not l24)) l84)
+ (= (and l84 (not l0)) l86)
+ ) (Invariant l26 l32 l42 l52 l64 l74)))
+(rule (=> (and (Invariant l4 l6 l8 l10 l12 l14)
+ (= (and l84 (not l0)) l86)
+ (= (and (not l82) (not l24)) l84)
+ (= (and (not l80) l22) l82)
+ (= (and (not l78) l10) l80)
+ (= (and (not l76) l18) l78)
+ (= (and l6 l4) l76)
+ (= (and l10 (not l8)) l18)
+ (= (and (not l14) (not l12)) l22)
+ (= (and l22 l20) l24)
+ (= (and l18 l16) l20)
+ (= (and l6 (not l4)) l16)
+ l86) Goal))
+(query Goal)
diff --git a/examples/python/data/horn5.smt2 b/examples/python/data/horn5.smt2
new file mode 100644
index 000000000..37642d517
--- /dev/null
+++ b/examples/python/data/horn5.smt2
@@ -0,0 +1,21 @@
+(declare-rel Invariant (Bool Bool Bool Bool))
+(declare-rel Goal ())
+(declare-var l0 Bool)
+(declare-var l2 Bool)
+(declare-var l4 Bool)
+(declare-var l6 Bool)
+(declare-var l8 Bool)
+(declare-var l10 Bool)
+(declare-var l12 Bool)
+(declare-var l14 Bool)
+(declare-var l16 Bool)
+(rule (=> (not (or l4 l6 l8 l10)) (Invariant l4 l6 l8 l10)))
+(rule (=> (and (Invariant l4 l6 l8 l10)
+ (= (and l6 l4) l12)
+ (= (and l12 l8) l14)
+ (= (and l10 (not l0)) l16)
+ ) (Invariant l12 l8 l0 l14)))
+(rule (=> (and (Invariant l4 l6 l8 l10)
+ (= (and l10 (not l0)) l16)
+ l16) Goal))
+(query Goal)
diff --git a/examples/python/data/horn6.smt2 b/examples/python/data/horn6.smt2
new file mode 100644
index 000000000..d90187e4d
--- /dev/null
+++ b/examples/python/data/horn6.smt2
@@ -0,0 +1,292 @@
+(declare-rel Invariant (Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool Bool))
+(declare-rel Goal ())
+(declare-var l0 Bool)
+(declare-var l2 Bool)
+(declare-var l4 Bool)
+(declare-var l6 Bool)
+(declare-var l8 Bool)
+(declare-var l10 Bool)
+(declare-var l12 Bool)
+(declare-var l14 Bool)
+(declare-var l16 Bool)
+(declare-var l18 Bool)
+(declare-var l20 Bool)
+(declare-var l22 Bool)
+(declare-var l24 Bool)
+(declare-var l26 Bool)
+(declare-var l28 Bool)
+(declare-var l30 Bool)
+(declare-var l32 Bool)
+(declare-var l34 Bool)
+(declare-var l36 Bool)
+(declare-var l38 Bool)
+(declare-var l40 Bool)
+(declare-var l42 Bool)
+(declare-var l44 Bool)
+(declare-var l46 Bool)
+(declare-var l48 Bool)
+(declare-var l50 Bool)
+(declare-var l52 Bool)
+(declare-var l54 Bool)
+(declare-var l56 Bool)
+(declare-var l58 Bool)
+(declare-var l60 Bool)
+(declare-var l62 Bool)
+(declare-var l64 Bool)
+(declare-var l66 Bool)
+(declare-var l68 Bool)
+(declare-var l70 Bool)
+(declare-var l72 Bool)
+(declare-var l74 Bool)
+(declare-var l76 Bool)
+(declare-var l78 Bool)
+(declare-var l80 Bool)
+(declare-var l82 Bool)
+(declare-var l84 Bool)
+(declare-var l86 Bool)
+(declare-var l88 Bool)
+(declare-var l90 Bool)
+(declare-var l92 Bool)
+(declare-var l94 Bool)
+(declare-var l96 Bool)
+(declare-var l98 Bool)
+(declare-var l100 Bool)
+(declare-var l102 Bool)
+(declare-var l104 Bool)
+(declare-var l106 Bool)
+(declare-var l108 Bool)
+(declare-var l110 Bool)
+(declare-var l112 Bool)
+(declare-var l114 Bool)
+(declare-var l116 Bool)
+(declare-var l118 Bool)
+(declare-var l120 Bool)
+(declare-var l122 Bool)
+(declare-var l124 Bool)
+(declare-var l126 Bool)
+(declare-var l128 Bool)
+(declare-var l130 Bool)
+(declare-var l132 Bool)
+(declare-var l134 Bool)
+(declare-var l136 Bool)
+(declare-var l138 Bool)
+(declare-var l140 Bool)
+(declare-var l142 Bool)
+(declare-var l144 Bool)
+(declare-var l146 Bool)
+(declare-var l148 Bool)
+(declare-var l150 Bool)
+(declare-var l152 Bool)
+(declare-var l154 Bool)
+(declare-var l156 Bool)
+(declare-var l158 Bool)
+(declare-var l160 Bool)
+(declare-var l162 Bool)
+(declare-var l164 Bool)
+(declare-var l166 Bool)
+(declare-var l168 Bool)
+(declare-var l170 Bool)
+(declare-var l172 Bool)
+(declare-var l174 Bool)
+(declare-var l176 Bool)
+(declare-var l178 Bool)
+(declare-var l180 Bool)
+(declare-var l182 Bool)
+(declare-var l184 Bool)
+(declare-var l186 Bool)
+(declare-var l188 Bool)
+(declare-var l190 Bool)
+(declare-var l192 Bool)
+(declare-var l194 Bool)
+(declare-var l196 Bool)
+(declare-var l198 Bool)
+(declare-var l200 Bool)
+(declare-var l202 Bool)
+(declare-var l204 Bool)
+(declare-var l206 Bool)
+(declare-var l208 Bool)
+(declare-var l210 Bool)
+(declare-var l212 Bool)
+(declare-var l214 Bool)
+(declare-var l216 Bool)
+(declare-var l218 Bool)
+(declare-var l220 Bool)
+(declare-var l222 Bool)
+(declare-var l224 Bool)
+(declare-var l226 Bool)
+(declare-var l228 Bool)
+(declare-var l230 Bool)
+(declare-var l232 Bool)
+(declare-var l234 Bool)
+(declare-var l236 Bool)
+(declare-var l238 Bool)
+(declare-var l240 Bool)
+(declare-var l242 Bool)
+(declare-var l244 Bool)
+(declare-var l246 Bool)
+(declare-var l248 Bool)
+(declare-var l250 Bool)
+(declare-var l252 Bool)
+(declare-var l254 Bool)
+(declare-var l256 Bool)
+(declare-var l258 Bool)
+(declare-var l260 Bool)
+(declare-var l262 Bool)
+(declare-var l264 Bool)
+(declare-var l266 Bool)
+(declare-var l268 Bool)
+(declare-var l270 Bool)
+(declare-var l272 Bool)
+(declare-var l274 Bool)
+(declare-var l276 Bool)
+(declare-var l278 Bool)
+(declare-var l280 Bool)
+(declare-var l282 Bool)
+(declare-var l284 Bool)
+(declare-var l286 Bool)
+(declare-var l288 Bool)
+(declare-var l290 Bool)
+(declare-var l292 Bool)
+(declare-var l294 Bool)
+(declare-var l296 Bool)
+(declare-var l298 Bool)
+(declare-var l300 Bool)
+(declare-var l302 Bool)
+(declare-var l304 Bool)
+(declare-var l306 Bool)
+(declare-var l308 Bool)
+(declare-var l310 Bool)
+(declare-var l312 Bool)
+(declare-var l314 Bool)
+(declare-var l316 Bool)
+(rule (=> (not (or l8 l10 l12 l14 l16 l18 l20 l22 l24 l26 l28 l30 l32 l34 l36 l38 l40 l42 l44 l46 l48 l50 l52 l54 l56 l58 l60 l62 l64 l66 l68 l70 l72 l74)) (Invariant l8 l10 l12 l14 l16 l18 l20 l22 l24 l26 l28 l30 l32 l34 l36 l38 l40 l42 l44 l46 l48 l50 l52 l54 l56 l58 l60 l62 l64 l66 l68 l70 l72 l74)))
+(rule (=> (and (Invariant l8 l10 l12 l14 l16 l18 l20 l22 l24 l26 l28 l30 l32 l34 l36 l38 l40 l42 l44 l46 l48 l50 l52 l54 l56 l58 l60 l62 l64 l66 l68 l70 l72 l74)
+ (= (and (not l20) (not l14)) l76)
+ (= (and (not l76) l8) l78)
+ (= (and l20 l14) l80)
+ (= (and (not l80) (not l78)) l82)
+ (= (and (not l28) l8) l84)
+ (= (and (not l84) l10) l86)
+ (= (and l18 l12) l88)
+ (= (and l88 l38) l90)
+ (= (and (not l24) (not l8)) l92)
+ (= (and l92 (not l26)) l94)
+ (= (and l94 l28) l96)
+ (= (and l96 (not l90)) l98)
+ (= (and (not l98) (not l86)) l100)
+ (= (and l38 l18) l102)
+ (= (and l102 l12) l104)
+ (= (and (not l104) (not l26)) l106)
+ (= (and l24 (not l16)) l108)
+ (= (and l108 (not l32)) l110)
+ (= (and l110 l106) l112)
+ (= (and (not l32) l14) l114)
+ (= (and (not l114) (not l112)) l116)
+ (= (and (not l114) l16) l118)
+ (= (and l32 (not l14)) l120)
+ (= (and l120 l106) l122)
+ (= (and l122 l24) l124)
+ (= (and (not l124) (not l118)) l126)
+ (= (and l26 (not l22)) l128)
+ (= (and l128 (not l36)) l130)
+ (= (and (not l36) l20) l132)
+ (= (and l130 (not l90)) l134)
+ (= (and (not l134) (not l132)) l136)
+ (= (and (not l132) l22) l138)
+ (= (and l26 (not l20)) l140)
+ (= (and l140 l36) l142)
+ (= (and l142 (not l90)) l144)
+ (= (and (not l144) (not l138)) l146)
+ (= (and (not l106) l24) l148)
+ (= (and l106 (not l24)) l150)
+ (= (and (not l150) (not l148)) l152)
+ (= (and (not l90) l24) l154)
+ (= (and l90 l26) l156)
+ (= (and (not l156) (not l154)) l158)
+ (= (and (not l30) l2) l160)
+ (= (and l28 (not l2)) l162)
+ (= (and (not l162) (not l160)) l164)
+ (= (and l28 l2) l166)
+ (= (and (not l166) l30) l168)
+ (= (and (not l30) l28) l170)
+ (= (and l170 l8) l172)
+ (= (and (not l172) (not l168)) l174)
+ (= (and (not l34) l4) l176)
+ (= (and l32 (not l4)) l178)
+ (= (and (not l178) (not l176)) l180)
+ (= (and l32 l4) l182)
+ (= (and (not l182) l34) l184)
+ (= (and (not l34) l32) l186)
+ (= (and l186 l14) l188)
+ (= (and (not l188) (not l184)) l190)
+ (= (and (not l40) l6) l192)
+ (= (and l36 (not l6)) l194)
+ (= (and (not l194) (not l192)) l196)
+ (= (and (not l24) (not l10)) l198)
+ (= (and l198 (not l26)) l200)
+ (= (and l200 (not l28)) l202)
+ (= (and l202 (not l90)) l204)
+ (= (and (not l204) (not l84)) l206)
+ (= (and l36 l6) l208)
+ (= (and (not l208) l40) l210)
+ (= (and (not l40) l36) l212)
+ (= (and l212 l20) l214)
+ (= (and (not l214) (not l210)) l216)
+ (= (and l62 l44) l218)
+ (= (and l52 l46) l220)
+ (= (and l220 l72) l222)
+ (= (and (not l60) (not l58)) l224)
+ (= (and l224 l62) l226)
+ (= (and l226 (not l222)) l228)
+ (= (and (not l228) (not l218)) l230)
+ (= (and (not l222) (not l60)) l232)
+ (= (and (not l66) l58) l234)
+ (= (and (not l66) l48) l236)
+ (= (and l234 l232) l238)
+ (= (and (not l238) (not l236)) l240)
+ (= (and l66 l50) l242)
+ (= (and l66 (not l48)) l244)
+ (= (and l244 l232) l246)
+ (= (and l246 l58) l248)
+ (= (and (not l248) (not l242)) l250)
+ (= (and (not l70) l60) l252)
+ (= (and (not l70) l54) l254)
+ (= (and l252 (not l222)) l256)
+ (= (and (not l256) (not l254)) l258)
+ (= (and l70 l56) l260)
+ (= (and l70 l60) l262)
+ (= (and l262 (not l222)) l264)
+ (= (and (not l264) (not l260)) l266)
+ (= (and (not l232) l58) l268)
+ (= (and l232 (not l58)) l270)
+ (= (and (not l270) (not l268)) l272)
+ (= (and l222 l60) l274)
+ (= (and (not l222) l58) l276)
+ (= (and (not l276) (not l274)) l278)
+ (= (and l62 (not l2)) l280)
+ (= (and (not l64) l2) l282)
+ (= (and (not l282) (not l280)) l284)
+ (= (and l62 l42) l286)
+ (= (and l286 (not l284)) l288)
+ (= (and l66 (not l4)) l290)
+ (= (and (not l68) l4) l292)
+ (= (and (not l292) (not l290)) l294)
+ (= (and (not l244) l66) l296)
+ (= (and l296 (not l294)) l298)
+ (= (and l70 (not l6)) l300)
+ (= (and (not l74) l6) l302)
+ (= (and (not l302) (not l300)) l304)
+ (= (and l224 (not l62)) l306)
+ (= (and (not l62) l42) l308)
+ (= (and l306 (not l222)) l310)
+ (= (and (not l310) (not l308)) l312)
+ (= (and l70 l54) l314)
+ (= (and l314 (not l304)) l316)
+ ) (Invariant l86 l100 l116 l118 l126 l136 l138 l146 l152 l158 l164 l174 l180 l190 l196 l206 l216 l218 l230 l240 l242 l250 l258 l260 l266 l272 l278 l284 l288 l294 l298 l304 l312 l316)))
+(rule (=> (and (Invariant l8 l10 l12 l14 l16 l18 l20 l22 l24 l26 l28 l30 l32 l34 l36 l38 l40 l42 l44 l46 l48 l50 l52 l54 l56 l58 l60 l62 l64 l66 l68 l70 l72 l74)
+ (= (and (not l80) (not l78)) l82)
+ (= (and l20 l14) l80)
+ (= (and (not l76) l8) l78)
+ (= (and (not l20) (not l14)) l76)
+ (not l82)) Goal))
+(query Goal)
diff --git a/examples/python/example.py b/examples/python/example.py
index a17668506..761ae10be 100644
--- a/examples/python/example.py
+++ b/examples/python/example.py
@@ -20,7 +20,7 @@
# export PYTHONPATH=MYZ3/bin/python
# python example.py
-# Running this example on OSX:
+# Running this example on macOS:
# export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:MYZ3/bin
# export PYTHONPATH=MYZ3/bin/python
# python example.py
diff --git a/examples/python/mini_ic3.py b/examples/python/mini_ic3.py
new file mode 100644
index 000000000..048e8e518
--- /dev/null
+++ b/examples/python/mini_ic3.py
@@ -0,0 +1,469 @@
+from z3 import *
+import heapq
+
+
+# Simplistic (and fragile) converter from
+# a class of Horn clauses corresponding to
+# a transition system into a transition system
+# representation as
+# It assumes it is given three Horn clauses
+# of the form:
+# init(x) => Invariant(x)
+# Invariant(x) and trans(x,x') => Invariant(x')
+# Invariant(x) and goal(x) => Goal(x)
+# where Invariant and Goal are uninterpreted predicates
+
+class Horn2Transitions:
+ def __init__(self):
+ self.trans = True
+ self.init = True
+ self.inputs = []
+ self.goal = True
+ self.index = 0
+
+ def parse(self, file):
+ fp = Fixedpoint()
+ goals = fp.parse_file(file)
+ for r in fp.get_rules():
+ if not is_quantifier(r):
+ continue
+ b = r.body()
+ if not is_implies(b):
+ continue
+ f = b.arg(0)
+ g = b.arg(1)
+ if self.is_goal(f, g):
+ continue
+ if self.is_transition(f, g):
+ continue
+ if self.is_init(f, g):
+ continue
+
+ def is_pred(self, p, name):
+ return is_app(p) and p.decl().name() == name
+
+ def is_goal(self, body, head):
+ if not self.is_pred(head, "Goal"):
+ return False
+ pred, inv = self.is_body(body)
+ if pred is None:
+ return False
+ self.goal = self.subst_vars("x", inv, pred)
+ self.goal = self.subst_vars("i", self.goal, self.goal)
+ self.inputs += self.vars
+ self.inputs = list(set(self.inputs))
+ return True
+
+ def is_body(self, body):
+ if not is_and(body):
+ return None, None
+ fmls = [f for f in body.children() if self.is_inv(f) is None]
+ inv = None
+ for f in body.children():
+ if self.is_inv(f) is not None:
+ inv = f;
+ break
+ return And(fmls), inv
+
+ def is_inv(self, f):
+ if self.is_pred(f, "Invariant"):
+ return f
+ return None
+
+ def is_transition(self, body, head):
+ pred, inv0 = self.is_body(body)
+ if pred is None:
+ return False
+ inv1 = self.is_inv(head)
+ if inv1 is None:
+ return False
+ pred = self.subst_vars("x", inv0, pred)
+ self.xs = self.vars
+ pred = self.subst_vars("xn", inv1, pred)
+ self.xns = self.vars
+ pred = self.subst_vars("i", pred, pred)
+ self.inputs += self.vars
+ self.inputs = list(set(self.inputs))
+ self.trans = pred
+ return True
+
+ def is_init(self, body, head):
+ for f in body.children():
+ if self.is_inv(f) is not None:
+ return False
+ inv = self.is_inv(head)
+ if inv is None:
+ return False
+ self.init = self.subst_vars("x", inv, body)
+ return True
+
+ def subst_vars(self, prefix, inv, fml):
+ subst = self.mk_subst(prefix, inv)
+ self.vars = [ v for (k,v) in subst ]
+ return substitute(fml, subst)
+
+ def mk_subst(self, prefix, inv):
+ self.index = 0
+ if self.is_inv(inv) is not None:
+ return [(f, self.mk_bool(prefix)) for f in inv.children()]
+ else:
+ vars = self.get_vars(inv)
+ return [(f, self.mk_bool(prefix)) for f in vars]
+
+ def mk_bool(self, prefix):
+ self.index += 1
+ return Bool("%s%d" % (prefix, self.index))
+
+ def get_vars(self, f, rs=[]):
+ if is_var(f):
+ return z3util.vset(rs + [f], str)
+ else:
+ for f_ in f.children():
+ rs = self.get_vars(f_, rs)
+ return z3util.vset(rs, str)
+
+# Produce a finite domain solver.
+# The theory QF_FD covers bit-vector formulas
+# and pseudo-Boolean constraints.
+# By default cardinality and pseudo-Boolean
+# constraints are converted to clauses. To override
+# this default for cardinality constraints
+# we set sat.cardinality.solver to True
+
+def fd_solver():
+ s = SolverFor("QF_FD")
+ s.set("sat.cardinality.solver", True)
+ return s
+
+
+# negate, avoid double negation
+def negate(f):
+ if is_not(f):
+ return f.arg(0)
+ else:
+ return Not(f)
+
+def cube2clause(cube):
+ return Or([negate(f) for f in cube])
+
+class State:
+ def __init__(self, s):
+ self.R = set([])
+ self.solver = s
+
+ def add(self, clause):
+ if clause not in self.R:
+ self.R |= { clause }
+ self.solver.add(clause)
+
+class Goal:
+ def __init__(self, cube, parent, level):
+ self.level = level
+ self.cube = cube
+ self.parent = parent
+
+def is_seq(f):
+ return isinstance(f, list) or isinstance(f, tuple) or isinstance(f, AstVector)
+
+# Check if the initial state is bad
+def check_disjoint(a, b):
+ s = fd_solver()
+ s.add(a)
+ s.add(b)
+ return unsat == s.check()
+
+
+# Remove clauses that are subsumed
+def prune(R):
+ removed = set([])
+ s = fd_solver()
+ for f1 in R:
+ s.push()
+ for f2 in R:
+ if f2 not in removed:
+ s.add(Not(f2) if f1.eq(f2) else f2)
+ if s.check() == unsat:
+ removed |= { f1 }
+ s.pop()
+ return R - removed
+
+class MiniIC3:
+ def __init__(self, init, trans, goal, x0, inputs, xn):
+ self.x0 = x0
+ self.inputs = inputs
+ self.xn = xn
+ self.init = init
+ self.bad = goal
+ self.trans = trans
+ self.min_cube_solver = fd_solver()
+ self.min_cube_solver.add(Not(trans))
+ self.goals = []
+ s = State(fd_solver())
+ s.add(init)
+ s.solver.add(trans)
+ self.states = [s]
+ self.s_bad = fd_solver()
+ self.s_good = fd_solver()
+ self.s_bad.add(self.bad)
+ self.s_good.add(Not(self.bad))
+
+ def next(self, f):
+ if is_seq(f):
+ return [self.next(f1) for f1 in f]
+ return substitute(f, zip(self.x0, self.xn))
+
+ def prev(self, f):
+ if is_seq(f):
+ return [self.prev(f1) for f1 in f]
+ return substitute(f, zip(self.xn, self.x0))
+
+ def add_solver(self):
+ s = fd_solver()
+ s.add(self.trans)
+ self.states += [State(s)]
+
+ def R(self, i):
+ return And(self.states[i].R)
+
+ # Check if there are two states next to each other that have the same clauses.
+ def is_valid(self):
+ i = 1
+ while i + 1 < len(self.states):
+ if not (self.states[i].R - self.states[i+1].R):
+ return And(prune(self.states[i].R))
+ i += 1
+ return None
+
+ def value2literal(self, m, x):
+ value = m.eval(x)
+ if is_true(value):
+ return x
+ if is_false(value):
+ return Not(x)
+ return None
+
+ def values2literals(self, m, xs):
+ p = [self.value2literal(m, x) for x in xs]
+ return [x for x in p if x is not None]
+
+ def project0(self, m):
+ return self.values2literals(m, self.x0)
+
+ def projectI(self, m):
+ return self.values2literals(m, self.inputs)
+
+ def projectN(self, m):
+ return self.values2literals(m, self.xn)
+
+ # Determine if there is a cube for the current state
+ # that is potentially reachable.
+ def unfold(self):
+ core = []
+ self.s_bad.push()
+ R = self.R(len(self.states)-1)
+ self.s_bad.add(R)
+ is_sat = self.s_bad.check()
+ if is_sat == sat:
+ m = self.s_bad.model()
+ cube = self.project0(m)
+ props = cube + self.projectI(m)
+ self.s_good.push()
+ self.s_good.add(R)
+ is_sat2 = self.s_good.check(props)
+ assert is_sat2 == unsat
+ core = self.s_good.unsat_core()
+ core = [c for c in core if c in set(cube)]
+ self.s_good.pop()
+ self.s_bad.pop()
+ return is_sat, core
+
+ # Block a cube by asserting the clause corresponding to its negation
+ def block_cube(self, i, cube):
+ self.assert_clause(i, cube2clause(cube))
+
+ # Add a clause to levels 0 until i
+ def assert_clause(self, i, clause):
+ for j in range(i + 1):
+ self.states[j].add(clause)
+
+ # minimize cube that is core of Dual solver.
+ # this assumes that props & cube => Trans
+ def minimize_cube(self, cube, inputs, lits):
+ is_sat = self.min_cube_solver.check(lits + [c for c in cube] + [i for i in inputs])
+ assert is_sat == unsat
+ core = self.min_cube_solver.unsat_core()
+ assert core
+ return [c for c in core if c in set(cube)]
+
+ # push a goal on a heap
+ def push_heap(self, goal):
+ heapq.heappush(self.goals, (goal.level, goal))
+
+ # A state s0 and level f0 such that
+ # not(s0) is f0-1 inductive
+ def ic3_blocked(self, s0, f0):
+ self.push_heap(Goal(self.next(s0), None, f0))
+ while self.goals:
+ f, g = heapq.heappop(self.goals)
+ sys.stdout.write("%d." % f)
+ sys.stdout.flush()
+ # Not(g.cube) is f-1 invariant
+ if f == 0:
+ print("")
+ return g
+ cube, f, is_sat = self.is_inductive(f, g.cube)
+ if is_sat == unsat:
+ self.block_cube(f, self.prev(cube))
+ if f < f0:
+ self.push_heap(Goal(g.cube, g.parent, f + 1))
+ elif is_sat == sat:
+ self.push_heap(Goal(cube, g, f - 1))
+ self.push_heap(g)
+ else:
+ return is_sat
+ print("")
+ return None
+
+ # Rudimentary generalization:
+ # If the cube is already unsat with respect to transition relation
+ # extract a core (not necessarily minimal)
+ # otherwise, just return the cube.
+ def generalize(self, cube, f):
+ s = self.states[f - 1].solver
+ if unsat == s.check(cube):
+ core = s.unsat_core()
+ if not check_disjoint(self.init, self.prev(And(core))):
+ return core, f
+ return cube, f
+
+ # Check if the negation of cube is inductive at level f
+ def is_inductive(self, f, cube):
+ s = self.states[f - 1].solver
+ s.push()
+ s.add(self.prev(Not(And(cube))))
+ is_sat = s.check(cube)
+ if is_sat == sat:
+ m = s.model()
+ s.pop()
+ if is_sat == sat:
+ cube = self.next(self.minimize_cube(self.project0(m), self.projectI(m), self.projectN(m)))
+ elif is_sat == unsat:
+ cube, f = self.generalize(cube, f)
+ return cube, f, is_sat
+
+ def run(self):
+ if not check_disjoint(self.init, self.bad):
+ return "goal is reached in initial state"
+ level = 0
+ while True:
+ inv = self.is_valid()
+ if inv is not None:
+ return inv
+ is_sat, cube = self.unfold()
+ if is_sat == unsat:
+ level += 1
+ print("Unfold %d" % level)
+ sys.stdout.flush()
+ self.add_solver()
+ elif is_sat == sat:
+ cex = self.ic3_blocked(cube, level)
+ if cex is not None:
+ return cex
+ else:
+ return is_sat
+
+def test(file):
+ h2t = Horn2Transitions()
+ h2t.parse(file)
+ mp = MiniIC3(h2t.init, h2t.trans, h2t.goal, h2t.xs, h2t.inputs, h2t.xns)
+ result = mp.run()
+ if isinstance(result, Goal):
+ g = result
+ print("Trace")
+ while g:
+ print(g.level, g.cube)
+ g = g.parent
+ return
+ if isinstance(result, ExprRef):
+ print("Invariant:\n%s " % result)
+ return
+ print(result)
+
+test("data/horn1.smt2")
+test("data/horn2.smt2")
+test("data/horn3.smt2")
+test("data/horn4.smt2")
+test("data/horn5.smt2")
+test("data/horn6.smt2")
+
+
+
+"""
+# TBD: Quip variant of IC3
+
+must = True
+may = False
+
+class QGoal:
+ def __init__(self, cube, parent, level, must):
+ self.level = level
+ self.cube = cube
+ self.parent = parent
+ self.must = must
+
+class Quip(MiniIC3):
+
+ # prev & tras -> r', such that r' intersects with cube
+ def add_reachable(self, prev, cube):
+ s = fd_solver()
+ s.add(self.trans)
+ s.add(prev)
+ s.add(Or(cube))
+ is_sat = s.check()
+ assert is_sat == sat
+ m = s.model();
+ result = self.values2literals(m, cube)
+ assert result
+ self.reachable.add(result)
+
+ # A state s0 and level f0 such that
+ # not(s0) is f0-1 inductive
+ def quip_blocked(self, s0, f0):
+ self.push_heap(QGoal(self.next(s0), None, f0, must))
+ while self.goals:
+ f, g = heapq.heappop(self.goals)
+ sys.stdout.write("%d." % f)
+ sys.stdout.flush()
+ if f == 0:
+ if g.must:
+ print("")
+ return g
+ self.add_reachable(self.init, p.parent.cube)
+ continue
+
+ # TBD
+ return None
+
+
+ def run(self):
+ if not check_disjoint(self.init, self.bad):
+ return "goal is reached in initial state"
+ level = 0
+ while True:
+ inv = self.is_valid()
+ if inv is not None:
+ return inv
+ is_sat, cube = self.unfold()
+ if is_sat == unsat:
+ level += 1
+ print("Unfold %d" % level)
+ sys.stdout.flush()
+ self.add_solver()
+ elif is_sat == sat:
+ cex = self.quipie_blocked(cube, level)
+ if cex is not None:
+ return cex
+ else:
+ return is_sat
+
+"""
diff --git a/examples/python/rc2.py b/examples/python/rc2.py
new file mode 100644
index 000000000..10bd83469
--- /dev/null
+++ b/examples/python/rc2.py
@@ -0,0 +1,149 @@
+# RC2 algorithm
+# basic version with some optimizations
+# - process soft constraints in order of highest values first.
+# - extract multiple cores, not just one
+# - use built-in cardinality constraints, cheap core minimization.
+#
+# See also https://github.com/pysathq/pysat and papers in CP 2014, JSAT 2015.
+
+from z3 import *
+
+def tt(s, f):
+ return is_true(s.model().eval(f))
+
+def add(Ws, f, w):
+ Ws[f] = w + (Ws[f] if f in Ws else 0)
+
+def sub(Ws, f, w):
+ w1 = Ws[f]
+ if w1 > w:
+ Ws[f] = w1 - w
+ else:
+ del(Ws[f])
+
+class RC2:
+
+ def __init__(self, s):
+ self.bounds = {}
+ self.names = {}
+ self.solver = s
+ self.solver.set("sat.cardinality.solver", True)
+ self.solver.set("sat.core.minimize", True)
+ self.solver.set("sat.core.minimize_partial", True)
+
+ def at_most(self, S, k):
+ fml = simplify(AtMost(S + [k]))
+ if fml in self.names:
+ return self.names[fml]
+ name = Bool("%s" % fml)
+ self.solver.add(Implies(name, fml))
+ self.bounds[name] = (S, k)
+ sel.names[fml] = name
+ return name
+
+ def print_cost(self):
+ print("cost [", self.min_cost, ":", self.max_cost, "]")
+
+ def update_max_cost(self):
+ self.max_cost = min(self.max_cost, self.get_cost())
+ self.print_cost()
+
+ # sort W, and incrementally add elements of W
+ # in sorted order to prefer cores with high weight.
+ def check(self, Ws):
+ ws = sorted(list(Ws), lambda f,w : -w)
+ # print(ws)
+ i = 0
+ while i < len(ws):
+ j = i
+ # increment j until making 5% progress or exhausting equal weight entries
+ while (j < len(ws) and ws[j][1] == ws[i][1]) or (i > 0 and (i - j)*20 < len(ws)):
+ j += 1
+ i = j
+ r = self.solver.check(ws[j][0] for j in range(i))
+ if r == sat:
+ self.update_max_cost()
+ else:
+ return r
+ return sat
+
+ def get_cost(self):
+ return sum(self.Ws0[c] for c in self.Ws0 if not tt(self.solver, c))
+
+ # Retrieve independendent cores from Ws
+ def get_cores(self, Ws):
+ cores = []
+ while unsat == self.check(Ws):
+ core = list(self.solver.unsat_core())
+ print (self.solver.statistics())
+ if not core:
+ return unsat
+ w = min([Ws[c] for c in core])
+ for f in core:
+ sub(Ws, f, w)
+ cores += [(core, w)]
+ self.update_max_cost()
+ return cores
+
+ # Add new soft constraints to replace core
+ # with weight w. Allow to weaken at most
+ # one element of core. Elements that are
+ # cardinality constraints are weakened by
+ # increasing their bounds. Non-cardinality
+ # constraints are weakened to "true". They
+ # correspond to the constraint Not(s) <= 0,
+ # so weakening produces Not(s) <= 1, which
+ # is a tautology.
+ def update_bounds(self, Ws, core, w):
+ for f in core:
+ if f in self.bounds:
+ S, k = self.bounds[f]
+ if k + 1 < len(S):
+ add(Ws, self.at_most(S, k + 1), w)
+ add(Ws, self.at_most([mk_not(f) for f in core], 1), w)
+
+ # Ws are weighted soft constraints
+ # Whenever there is an unsatisfiable core over ws
+ # increase the limit of each soft constraint from a bound
+ # and create a soft constraint that limits the number of
+ # increased bounds to be at most one.
+ def maxsat(self, Ws):
+ self.min_cost = 0
+ self.max_cost = sum(Ws[c] for c in Ws)
+ self.Ws0 = Ws.copy()
+ while True:
+ cores = self.get_cores(Ws)
+ if not cores:
+ break
+ if cores == unsat:
+ return unsat
+ for (core, w) in cores:
+ self.min_cost += w
+ self.print_cost()
+ self.update_bounds(Ws, core, w)
+ return sel.min_cost, { f for f in self.Ws0 if not tt(self.solver, f) }
+
+ def from_file(self, file):
+ opt = Optimize()
+ opt.from_file(file)
+ self.solver.add(opt.assertions())
+ obj = opt.objectives()[0]
+ Ws = {}
+ for f in obj.children():
+ assert(f.arg(1).as_long() == 0)
+ add(Ws, f.arg(0), f.arg(2).as_long())
+ return self.maxsat(Ws)
+
+def main(file):
+ s = SolverFor("QF_FD")
+ rc2 = RC2(s)
+ set_param(verbose=0)
+ cost, falses = rc2.from_file(file)
+ print(cost)
+ print(s.statistics())
+
+if len(sys.argv) > 1:
+ main(sys.argv[1])
+
+# main()
+
diff --git a/examples/tptp/CMakeLists.txt b/examples/tptp/CMakeLists.txt
index 8e8dfb8ea..7870e5408 100644
--- a/examples/tptp/CMakeLists.txt
+++ b/examples/tptp/CMakeLists.txt
@@ -7,8 +7,8 @@ find_package(Z3
REQUIRED
CONFIG
# `NO_DEFAULT_PATH` is set so that -DZ3_DIR has to be passed to find Z3.
- # This should prevent us from accidently picking up an installed
- # copy of Z3. This is here to benefit Z3's build sytem when building
+ # This should prevent us from accidentally picking up an installed
+ # copy of Z3. This is here to benefit Z3's build system when building
# this project. When making your own project you probably shouldn't
# use this option.
NO_DEFAULT_PATH
diff --git a/examples/tptp/README b/examples/tptp/README
index c28a53da4..b3edfe6a8 100644
--- a/examples/tptp/README
+++ b/examples/tptp/README
@@ -5,9 +5,9 @@ in the build directory.
This command will create the executable tptp.
On Windows, you can just execute it.
-On OSX and Linux, you must install z3 first using
+On macOS and Linux, you must install z3 first using
sudo make install
-OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (OSX)
+OR update LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (macOS)
with the build directory. You need that to be able to
find the Z3 shared library.
diff --git a/examples/tptp/tptp5.cpp b/examples/tptp/tptp5.cpp
index facbf6c0a..1a1e31f0a 100644
--- a/examples/tptp/tptp5.cpp
+++ b/examples/tptp/tptp5.cpp
@@ -233,7 +233,7 @@ class env {
void check_arity(unsigned num_args, unsigned arity) {
if (num_args != arity) {
- throw failure_ex("arity missmatch");
+ throw failure_ex("arity mismatch");
}
}
@@ -1337,7 +1337,7 @@ public:
}
}
else if (e.is_quantifier()) {
- Z3_bool is_forall = Z3_is_quantifier_forall(ctx, e);
+ bool is_forall = Z3_is_quantifier_forall(ctx, e);
unsigned nb = Z3_get_quantifier_num_bound(ctx, e);
out << (is_forall?"!":"?") << "[";
diff --git a/noarch/repodata.json b/noarch/repodata.json
new file mode 100644
index 000000000..e69de29bb
diff --git a/noarch/repodata.json.bz2 b/noarch/repodata.json.bz2
new file mode 100644
index 000000000..b56f3b974
Binary files /dev/null and b/noarch/repodata.json.bz2 differ
diff --git a/package/Microsoft.Z3.x64.nuspec b/package/Microsoft.Z3.x64.nuspec
new file mode 100644
index 000000000..506e5f9c7
--- /dev/null
+++ b/package/Microsoft.Z3.x64.nuspec
@@ -0,0 +1,22 @@
+
+
+
+ Microsoft.Z3.x64
+ $(releaseVersion)
+ © Microsoft Corporation. All rights reserved.
+ Microsoft
+ https://raw.githubusercontent.com/Z3Prover/z3/$(releaseCommitHash)/package/icon.jpg
+ https://github.com/Z3Prover/z3
+ https://raw.githubusercontent.com/Z3Prover/z3/$(releaseCommitHash)/LICENSE.txt
+
+ true
+ Z3 is a satisfiability modulo theories solver from Microsoft Research.
+ smt constraint solver theorem prover
+ en
+
+
diff --git a/package/Microsoft.Z3.x64.targets b/package/Microsoft.Z3.x64.targets
new file mode 100644
index 000000000..a5b636f69
--- /dev/null
+++ b/package/Microsoft.Z3.x64.targets
@@ -0,0 +1,10 @@
+
+
+
+
+ false
+ libz3.dll
+ PreserveNewest
+
+
+
diff --git a/package/PackageCreationDirections.md b/package/PackageCreationDirections.md
new file mode 100644
index 000000000..6aaee5a1d
--- /dev/null
+++ b/package/PackageCreationDirections.md
@@ -0,0 +1,34 @@
+# Z3 NuGet packaging
+
+## Creation
+
+ 1. After tagging a commit for release, sign Microsoft.Z3.dll and libz3.dll (both x86 and x64 versions) with Microsoft's Authenticode certificate
+ 2. Test the signed DLLs with the `Get-AuthenticodeSignature` PowerShell commandlet
+ 3. Create the following directory structure for the x64 package (for x86, substitute the "x64" strings for "x86" and use x86 DLLs):
+ ```
+ +-- Microsoft.Z3.x64
+ | +-- Microsoft.Z3.x64.nuspec
+ | +-- lib
+ | +-- net40
+ | +-- Microsoft.Z3.dll
+ | +-- build
+ | +-- Microsoft.Z3.x64.targets
+ | +-- libz3.dll
+ ```
+ 4. Open the nuspec file and fill in the appropriate macro values:
+ * $(releaseVersion) - the Z3 version being released in this package
+ * $(releaseCommitHash) - hash of the release commit (there are several of these)
+ 5. Run `nuget pack Microsoft.Z3.x64\Microsoft.Z3.x64.nuspec`
+ 6. Test the resulting nupkg file (described below) then submit the package for signing before uploading to NuGet.org
+
+## Testing
+
+ 1. Create a directory on your machine at C:\nuget-test-source
+ 2. Put the Microsoft.Z3.x64.nupkg file in the directory
+ 3. Open Visual Studio 2017, create a new C# project, then right click the project and click "Manage NuGet packages"
+ 4. Add a new package source - your C:\nuget-test-source directory
+ 5. Find the Microsoft.Z3.x64 package, ensuring in preview window that icon is present and all fields correct
+ 6. Install the Microsoft.Z3.x64 package, ensuring you are asked to accept the license
+ 7. Build your project. Check the output directory to ensure both Microsoft.Z3.dll and libz3.dll are present
+ 8. Import Microsoft.Z3 to your project then add a simple line of code like `using (var ctx = new Context()) { }`; build then run your project to ensure the assemblies load properly
+
\ No newline at end of file
diff --git a/package/icon.jpg b/package/icon.jpg
new file mode 100644
index 000000000..a862aa824
Binary files /dev/null and b/package/icon.jpg differ
diff --git a/scripts/mk_genfile_common.py b/scripts/mk_genfile_common.py
index 7fa6d4041..a65b41026 100644
--- a/scripts/mk_genfile_common.py
+++ b/scripts/mk_genfile_common.py
@@ -692,31 +692,35 @@ def mk_install_tactic_cpp_internal(h_files_full_path, path):
fout.write('#include "cmd_context/tactic_cmds.h"\n')
fout.write('#include "cmd_context/cmd_context.h"\n')
tactic_pat = re.compile('[ \t]*ADD_TACTIC\(.*\)')
- probe_pat = re.compile('[ \t]*ADD_PROBE\(.*\)')
+ probe_pat = re.compile('[ \t]*ADD_PROBE\(.*\)')
for h_file in sorted_headers_by_component(h_files_full_path):
added_include = False
- with open(h_file, 'r') as fin:
- for line in fin:
- if tactic_pat.match(line):
- if not added_include:
- added_include = True
- fout.write('#include "%s"\n' % path_after_src(h_file))
- try:
- eval(line.strip('\n '), eval_globals, None)
- except Exception as e:
- _logger.error("Failed processing ADD_TACTIC command at '{}'\n{}".format(
- fullname, line))
- raise e
- if probe_pat.match(line):
- if not added_include:
- added_include = True
- fout.write('#include "%s"\n' % path_after_src(h_file))
- try:
- eval(line.strip('\n '), eval_globals, None)
- except Exception as e:
- _logger.error("Failed processing ADD_PROBE command at '{}'\n{}".format(
- fullname, line))
- raise e
+ try:
+ with open(h_file, 'r') as fin:
+ for line in fin:
+ if tactic_pat.match(line):
+ if not added_include:
+ added_include = True
+ fout.write('#include "%s"\n' % path_after_src(h_file))
+ try:
+ eval(line.strip('\n '), eval_globals, None)
+ except Exception as e:
+ _logger.error("Failed processing ADD_TACTIC command at '{}'\n{}".format(
+ fullname, line))
+ raise e
+ if probe_pat.match(line):
+ if not added_include:
+ added_include = True
+ fout.write('#include "%s"\n' % path_after_src(h_file))
+ try:
+ eval(line.strip('\n '), eval_globals, None)
+ except Exception as e:
+ _logger.error("Failed processing ADD_PROBE command at '{}'\n{}".format(
+ fullname, line))
+ raise e
+ except Exception as e:
+ _logger.error("Failed to read file {}\n".format(h_file))
+ raise e
# First pass will just generate the tactic factories
fout.write('#define ADD_TACTIC_CMD(NAME, DESCR, CODE) ctx.insert(alloc(tactic_cmd, symbol(NAME), DESCR, [](ast_manager &m, const params_ref &p) { return CODE; }))\n')
fout.write('#define ADD_PROBE(NAME, DESCR, PROBE) ctx.insert(alloc(probe_info, symbol(NAME), DESCR, PROBE))\n')
diff --git a/scripts/mk_nuget_release.py b/scripts/mk_nuget_release.py
new file mode 100644
index 000000000..c5079ed2c
--- /dev/null
+++ b/scripts/mk_nuget_release.py
@@ -0,0 +1,118 @@
+#
+# Copyright (c) 2018 Microsoft Corporation
+#
+
+# 1. download releases from github
+# 2. copy over libz3.dll for the different architectures
+# 3. copy over Microsoft.Z3.dll from suitable distribution
+# 4. copy nuspec file from packages
+# 5. call nuget pack
+
+import json
+import os
+import urllib.request
+import zipfile
+import sys
+import os.path
+import shutil
+import subprocess
+import mk_util
+import mk_project
+
+data = json.loads(urllib.request.urlopen("https://api.github.com/repos/Z3Prover/z3/releases/latest").read().decode())
+
+version_str = data['tag_name']
+
+print(version_str)
+
+def mk_dir(d):
+ if not os.path.exists(d):
+ os.makedirs(d)
+
+def download_installs():
+ for asset in data['assets']:
+ url = asset['browser_download_url']
+ name = asset['name']
+ print("Downloading ", url)
+ sys.stdout.flush()
+ urllib.request.urlretrieve(url, "packages/%s" % name)
+
+os_info = {"z64-ubuntu-14" : ('so', 'ubuntu.14.04-x64'),
+ 'ubuntu-16' : ('so', 'ubuntu.16.04-x64'),
+ 'x64-win' : ('dll', 'win-x64'),
+ 'x86-win' : ('dll', 'win-x86'),
+ 'osx' : ('dylib', 'macos'),
+ 'debian' : ('so', 'debian.8-x64') }
+
+def classify_package(f):
+ for os_name in os_info:
+ if os_name in f:
+ ext, dst = os_info[os_name]
+ return os_name, f[:-4], ext, dst
+ return None
+
+def unpack():
+ shutil.rmtree("out", ignore_errors=True)
+ # unzip files in packages
+ # out
+ # +- runtimes
+ # +- win-x64
+ # +- win-x86
+ # +- ubuntu.16.04-x64
+ # +- ubuntu.14.04-x64
+ # +- debian.8-x64
+ # +- macos
+ # +
+ for f in os.listdir("packages"):
+ print(f)
+ if f.endswith(".zip") and classify_package(f):
+ os_name, package_dir, ext, dst = classify_package(f)
+ path = os.path.abspath(os.path.join("packages", f))
+ zip_ref = zipfile.ZipFile(path, 'r')
+ zip_ref.extract("%s/bin/libz3.%s" % (package_dir, ext), "tmp")
+ mk_dir("out/runtimes/%s/native" % dst)
+ shutil.move("tmp/%s/bin/libz3.%s" % (package_dir, ext), "out/runtimes/%s/native/." % dst, "/y")
+ if "x64-win" in f:
+ mk_dir("out/lib/netstandard1.4/")
+ for b in ["Microsoft.Z3.dll"]:
+ zip_ref.extract("%s/bin/%s" % (package_dir, b), "tmp")
+ shutil.move("tmp/%s/bin/%s" % (package_dir, b), "out/lib/netstandard1.4/%s" % b)
+
+def create_nuget_spec():
+ contents = """
+
+
+ Microsoft.Z3
+ %s
+ Microsoft
+ Z3 is a satisfiability modulo theories solver from Microsoft Research.
+ Copyright Microsoft Corporation. All rights reserved.
+ smt constraint solver theorem prover
+ https://raw.githubusercontent.com/Z3Prover/z3/master/package/icon.jpg
+ https://github.com/Z3Prover/z3
+ https://raw.githubusercontent.com/Z3Prover/z3/master/LICENSE.txt
+
+ true
+ en
+
+"""
+
+ with open("out/Microsoft.Z3.nuspec", 'w') as f:
+ f.write(contents % version_str[3:])
+
+def create_nuget_package():
+ subprocess.call(["nuget", "pack"], cwd="out")
+
+def main():
+ mk_dir("packages")
+ download_installs()
+ unpack()
+ create_nuget_spec()
+ create_nuget_package()
+
+
+main()
diff --git a/scripts/mk_project.py b/scripts/mk_project.py
index ca62f5c5f..58d087f32 100644
--- a/scripts/mk_project.py
+++ b/scripts/mk_project.py
@@ -7,10 +7,13 @@
############################################
from mk_util import *
+def init_version():
+ set_version(4, 8, 5, 0)
+
# Z3 Project definition
def init_project_def():
- set_version(4, 8, 0, 0)
- add_lib('util', [])
+ init_version()
+ add_lib('util', [], includes2install = ['z3_version.h'])
add_lib('polynomial', ['util'], 'math/polynomial')
add_lib('sat', ['util'])
add_lib('nlsat', ['polynomial', 'sat'])
@@ -84,6 +87,7 @@ def init_project_def():
export_files=API_files,
staging_link='python')
add_dot_net_dll('dotnet', ['api_dll'], 'api/dotnet', dll_name='Microsoft.Z3', assembly_info_dir='Properties', default_key_file='src/api/dotnet/Microsoft.Z3.snk')
+ add_dot_net_core_dll('dotnetcore', ['api_dll'], 'api/dotnet', dll_name='Microsoft.Z3', assembly_info_dir='Properties', default_key_file='src/api/dotnet/Microsoft.Z3.snk')
add_java_dll('java', ['api_dll'], 'api/java', dll_name='libz3java', package_name="com.microsoft.z3", manifest_file='manifest')
add_ml_lib('ml', ['api_dll'], 'api/ml', lib_name='libz3ml')
add_hlib('cpp', 'api/c++', includes2install=['z3++.h'])
diff --git a/scripts/mk_unix_dist.py b/scripts/mk_unix_dist.py
index 00cf3c706..bad51528f 100644
--- a/scripts/mk_unix_dist.py
+++ b/scripts/mk_unix_dist.py
@@ -23,6 +23,7 @@ VERBOSE=True
DIST_DIR='dist'
FORCE_MK=False
DOTNET_ENABLED=True
+DOTNET_CORE_ENABLED=False
DOTNET_KEY_FILE=None
JAVA_ENABLED=True
GIT_HASH=False
@@ -55,6 +56,7 @@ def display_help():
print(" -b , --build= subdirectory where x86 and x64 Z3 versions will be built (default: build-dist).")
print(" -f, --force force script to regenerate Makefiles.")
print(" --nodotnet do not include .NET bindings in the binary distribution files.")
+ print(" --dotnetcore build for dotnet core.")
print(" --dotnet-key= sign the .NET assembly with the private key in .")
print(" --nojava do not include Java bindings in the binary distribution files.")
print(" --nopython do not include Python bindings in the binary distribution files.")
@@ -63,7 +65,7 @@ def display_help():
# Parse configuration option for mk_make script
def parse_options():
- global FORCE_MK, JAVA_ENABLED, GIT_HASH, DOTNET_ENABLED, DOTNET_KEY_FILE
+ global FORCE_MK, JAVA_ENABLED, GIT_HASH, DOTNET_ENABLED, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE
path = BUILD_DIR
options, remainder = getopt.gnu_getopt(sys.argv[1:], 'b:hsf', ['build=',
'help',
@@ -71,6 +73,7 @@ def parse_options():
'force',
'nojava',
'nodotnet',
+ 'dotnetcore',
'dotnet-key=',
'githash',
'nopython'
@@ -88,6 +91,9 @@ def parse_options():
FORCE_MK = True
elif opt == '--nodotnet':
DOTNET_ENABLED = False
+ elif opt == '--dotnetcore':
+ DOTNET_CORE_ENABLED = True
+ DOTNET_ENABLED = False
elif opt == '--nopython':
PYTHON_ENABLED = False
elif opt == '--dotnet-key':
@@ -108,7 +114,11 @@ def check_build_dir(path):
def mk_build_dir(path):
if not check_build_dir(path) or FORCE_MK:
opts = ["python", os.path.join('scripts', 'mk_make.py'), "-b", path, "--staticlib"]
- if DOTNET_ENABLED:
+ if DOTNET_CORE_ENABLED:
+ opts.append('--dotnetcore')
+ if not DOTNET_KEY_FILE is None:
+ opts.append('--dotnet-key=' + DOTNET_KEY_FILE)
+ elif DOTNET_ENABLED:
opts.append('--dotnet')
if not DOTNET_KEY_FILE is None:
opts.append('--dotnet-key=' + DOTNET_KEY_FILE)
@@ -186,7 +196,8 @@ def mk_dist_dir():
build_path = BUILD_DIR
dist_path = os.path.join(DIST_DIR, get_z3_name())
mk_dir(dist_path)
- mk_util.DOTNET_ENABLED = DOTNET_ENABLED
+ mk_util.DOTNET_CORE_ENABLED = DOTNET_CORE_ENABLED
+ mk_util.DOTNET_ENABLED = DOTNET_ENABLED
mk_util.DOTNET_KEY_FILE = DOTNET_KEY_FILE
mk_util.JAVA_ENABLED = JAVA_ENABLED
mk_util.PYTHON_ENABLED = PYTHON_ENABLED
diff --git a/scripts/mk_util.py b/scripts/mk_util.py
index 770e118ee..9076b582f 100644
--- a/scripts/mk_util.py
+++ b/scripts/mk_util.py
@@ -37,6 +37,7 @@ OCAMLOPT=getenv("OCAMLOPT", "ocamlopt")
OCAML_LIB=getenv("OCAML_LIB", None)
OCAMLFIND=getenv("OCAMLFIND", "ocamlfind")
CSC=getenv("CSC", None)
+DOTNET="dotnet"
GACUTIL=getenv("GACUTIL", 'gacutil')
# Standard install directories relative to PREFIX
INSTALL_BIN_DIR=getenv("Z3_INSTALL_BIN_DIR", "bin")
@@ -60,6 +61,7 @@ PATTERN_COMPONENT='pattern'
UTIL_COMPONENT='util'
API_COMPONENT='api'
DOTNET_COMPONENT='dotnet'
+DOTNET_CORE_COMPONENT='dotnetcore'
JAVA_COMPONENT='java'
ML_COMPONENT='ml'
CPP_COMPONENT='cpp'
@@ -87,6 +89,8 @@ VS_PROJ = False
TRACE = False
PYTHON_ENABLED=False
DOTNET_ENABLED=False
+DOTNET_CORE_ENABLED=False
+ESRP_SIGN=False
DOTNET_KEY_FILE=getenv("Z3_DOTNET_KEY_FILE", None)
JAVA_ENABLED=False
ML_ENABLED=False
@@ -396,7 +400,7 @@ def check_java():
libdirs = m.group(1).split(',')
for libdir in libdirs:
q = os.path.dirname(libdir)
- if cdirs.count(q) == 0:
+ if cdirs.count(q) == 0 and len(q) > 0:
cdirs.append(q)
t.close()
@@ -452,6 +456,13 @@ def check_dotnet():
if r != 0:
raise MKException('Failed testing gacutil. Set environment variable GACUTIL with the path to gacutil.')
+def check_dotnet_core():
+ if not IS_WINDOWS:
+ return
+ r = exec_cmd([DOTNET, '--help'])
+ if r != 0:
+ raise MKException('Failed testing dotnet. Make sure to install and configure dotnet core utilities')
+
def check_ml():
t = TempFile('hello.ml')
t.add('print_string "Hello world!\n";;')
@@ -553,6 +564,11 @@ def set_version(major, minor, build, revision):
def get_version():
return (VER_MAJOR, VER_MINOR, VER_BUILD, VER_REVISION)
+def get_version_string(n):
+ if n == 3:
+ return "{}.{}.{}".format(VER_MAJOR,VER_MINOR,VER_BUILD)
+ return "{}.{}.{}.{}".format(VER_MAJOR,VER_MINOR,VER_BUILD,VER_REVISION)
+
def build_static_lib():
return STATIC_LIB
@@ -652,6 +668,7 @@ def display_help(exit_code):
if IS_WINDOWS:
print(" -v, --vsproj generate Visual Studio Project Files.")
print(" --optimize generate optimized code during linking.")
+ print(" --dotnetcore generate .NET platform bindings.")
print(" --dotnet generate .NET bindings.")
print(" --dotnet-key= sign the .NET assembly using the private key in .")
print(" --java generate Java bindings.")
@@ -690,14 +707,14 @@ def display_help(exit_code):
# Parse configuration option for mk_make script
def parse_options():
global VERBOSE, DEBUG_MODE, IS_WINDOWS, VS_X64, ONLY_MAKEFILES, SHOW_CPPS, VS_PROJ, TRACE, VS_PAR, VS_PAR_NUM
- global DOTNET_ENABLED, DOTNET_KEY_FILE, JAVA_ENABLED, ML_ENABLED, JS_ENABLED, STATIC_LIB, STATIC_BIN, PREFIX, GMP, PYTHON_PACKAGE_DIR, GPROF, GIT_HASH, GIT_DESCRIBE, PYTHON_INSTALL_ENABLED, PYTHON_ENABLED
+ global DOTNET_ENABLED, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, JAVA_ENABLED, ML_ENABLED, JS_ENABLED, STATIC_LIB, STATIC_BIN, PREFIX, GMP, PYTHON_PACKAGE_DIR, GPROF, GIT_HASH, GIT_DESCRIBE, PYTHON_INSTALL_ENABLED, PYTHON_ENABLED, ESRP_SIGN
global LINUX_X64, SLOW_OPTIMIZE, USE_OMP, LOG_SYNC
global GUARD_CF, ALWAYS_DYNAMIC_BASE
try:
options, remainder = getopt.gnu_getopt(sys.argv[1:],
'b:df:sxhmcvtnp:gj',
['build=', 'debug', 'silent', 'x64', 'help', 'makefiles', 'showcpp', 'vsproj', 'guardcf',
- 'trace', 'dotnet', 'dotnet-key=', 'staticlib', 'prefix=', 'gmp', 'java', 'parallel=', 'gprof', 'js',
+ 'trace', 'dotnet', 'dotnetcore', 'dotnet-key=', 'esrp', 'staticlib', 'prefix=', 'gmp', 'java', 'parallel=', 'gprof', 'js',
'githash=', 'git-describe', 'x86', 'ml', 'optimize', 'noomp', 'pypkgdir=', 'python', 'staticbin', 'log-sync'])
except:
print("ERROR: Invalid command line option")
@@ -731,8 +748,12 @@ def parse_options():
TRACE = True
elif opt in ('-.net', '--dotnet'):
DOTNET_ENABLED = True
+ elif opt in ('--dotnetcore',):
+ DOTNET_CORE_ENABLED = True
elif opt in ('--dotnet-key'):
DOTNET_KEY_FILE = arg
+ elif opt in ('--esrp'):
+ ESRP_SIGN = True
elif opt in ('--staticlib'):
STATIC_LIB = True
elif opt in ('--staticbin'):
@@ -887,6 +908,9 @@ def is_js_enabled():
def is_dotnet_enabled():
return DOTNET_ENABLED
+def is_dotnet_core_enabled():
+ return DOTNET_CORE_ENABLED
+
def is_python_enabled():
return PYTHON_ENABLED
@@ -1606,6 +1630,23 @@ class PythonInstallComponent(Component):
def mk_makefile(self, out):
return
+def set_key_file(self):
+ global DOTNET_KEY_FILE
+ # We need to give the assembly a strong name so that it
+ # can be installed into the GAC with ``make install``
+ if not DOTNET_KEY_FILE is None:
+ self.key_file = DOTNET_KEY_FILE
+
+ if not self.key_file is None:
+ if os.path.isfile(self.key_file):
+ self.key_file = os.path.abspath(self.key_file)
+ elif os.path.isfile(os.path.join(self.src_dir, self.key_file)):
+ self.key_file = os.path.abspath(os.path.join(self.src_dir, self.key_file))
+ else:
+ print("Keyfile '%s' could not be found; %s.dll will be unsigned." % (self.key_file, self.dll_name))
+ self.key_file = None
+
+
class DotNetDLLComponent(Component):
def __init__(self, name, dll_name, path, deps, assembly_info_dir, default_key_file):
Component.__init__(self, name, path, deps)
@@ -1625,11 +1666,7 @@ class DotNetDLLComponent(Component):
pkg_config_template = os.path.join(self.src_dir, '{}.pc.in'.format(self.gac_pkg_name()))
substitutions = { 'PREFIX': PREFIX,
'GAC_PKG_NAME': self.gac_pkg_name(),
- 'VERSION': "{}.{}.{}.{}".format(
- VER_MAJOR,
- VER_MINOR,
- VER_BUILD,
- VER_REVISION)
+ 'VERSION': get_version_string(4)
}
pkg_config_output = os.path.join(BUILD_DIR,
self.build_dir,
@@ -1668,25 +1705,10 @@ class DotNetDLLComponent(Component):
'/noconfig',
'/nostdlib+',
'/reference:mscorlib.dll',
- # Under mono this isn't neccessary as mono will search the system
- # library paths for libz3.so
- '/linkresource:{}.dll'.format(get_component(Z3_DLL_COMPONENT).dll_name),
]
)
- # We need to give the assembly a strong name so that it
- # can be installed into the GAC with ``make install``
- if not DOTNET_KEY_FILE is None:
- self.key_file = DOTNET_KEY_FILE
-
- if not self.key_file is None:
- if os.path.isfile(self.key_file):
- self.key_file = os.path.abspath(self.key_file)
- elif os.path.isfile(os.path.join(self.src_dir, self.key_file)):
- self.key_file = os.path.abspath(os.path.join(self.src_dir, self.key_file))
- else:
- print("Keyfile '%s' could not be found; %s.dll will be unsigned." % (self.key_file, self.dll_name))
- self.key_file = None
+ set_key_file(self)
if not self.key_file is None:
print("%s.dll will be signed using key '%s'." % (self.dll_name, self.key_file))
@@ -1814,6 +1836,204 @@ class DotNetDLLComponent(Component):
pkg_config_file = os.path.join('lib','pkgconfig','{}.pc'.format(self.gac_pkg_name()))
MakeRuleCmd.remove_installed_files(out, pkg_config_file)
+
+# build for dotnet core
+class DotNetCoreDLLComponent(Component):
+ def __init__(self, name, dll_name, path, deps, assembly_info_dir, default_key_file):
+ Component.__init__(self, name, path, deps)
+ if dll_name is None:
+ dll_name = name
+ if assembly_info_dir is None:
+ assembly_info_dir = "."
+ self.dll_name = dll_name
+ self.assembly_info_dir = assembly_info_dir
+ self.key_file = default_key_file
+
+
+ def mk_makefile(self, out):
+ if not is_dotnet_core_enabled():
+ return
+ cs_fp_files = []
+ for cs_file in get_cs_files(self.src_dir):
+ cs_fp_files.append(os.path.join(self.to_src_dir, cs_file))
+ if self.assembly_info_dir != '.':
+ for cs_file in get_cs_files(os.path.join(self.src_dir, self.assembly_info_dir)):
+ cs_fp_files.append(os.path.join(self.to_src_dir, self.assembly_info_dir, cs_file))
+ dllfile = '%s.dll' % self.dll_name
+ out.write('%s: %s$(SO_EXT)' % (dllfile, get_component(Z3_DLL_COMPONENT).dll_name))
+ for cs_file in cs_fp_files:
+ out.write(' ')
+ out.write(cs_file)
+ out.write('\n')
+
+ set_key_file(self)
+ key = ""
+ if not self.key_file is None:
+ key = "%s" % self.key_file
+ key += "\ntrue"
+
+ if VS_X64:
+ platform = 'x64'
+ elif VS_ARM:
+ platform = 'ARM'
+ else:
+ platform = 'x86'
+
+ version = get_version_string(3)
+
+ core_csproj_str = """
+
+
+ netstandard1.4
+ %s
+ $(DefineConstants);DOTNET_CORE
+ portable
+ Microsoft.Z3
+ Library
+ Microsoft.Z3
+ 1.0.4
+ %s
+ true
+ Microsoft
+ Microsoft
+ Z3 is a satisfiability modulo theories solver from Microsoft Research.
+ Copyright Microsoft Corporation. All rights reserved.
+ smt constraint solver theorem prover
+ %s
+
+
+
+
+
+
+""" % (platform, version, key, self.to_src_dir)
+
+ mk_dir(os.path.join(BUILD_DIR, 'dotnet'))
+ csproj = os.path.join('dotnet', 'z3.csproj')
+ with open(os.path.join(BUILD_DIR, csproj), 'w') as ous:
+ ous.write(core_csproj_str)
+
+ dotnetCmdLine = [DOTNET, "build", csproj]
+
+ dotnetCmdLine.extend(['-c'])
+ if DEBUG_MODE:
+ dotnetCmdLine.extend(['Debug'])
+ else:
+ dotnetCmdLine.extend(['Release'])
+
+ path = os.path.join(os.path.abspath(BUILD_DIR), ".")
+ dotnetCmdLine.extend(['-o', path])
+
+ MakeRuleCmd.write_cmd(out, ' '.join(dotnetCmdLine))
+ self.sign_esrp(out)
+ out.write('\n')
+ out.write('%s: %s\n\n' % (self.name, dllfile))
+
+ def sign_esrp(self, out):
+ global ESRP_SIGNx
+ print("esrp-sign", ESRP_SIGN)
+ if not ESRP_SIGN:
+ return
+
+ import uuid
+ guid = str(uuid.uuid4())
+ path = os.path.abspath(BUILD_DIR).replace("\\","\\\\")
+ assemblySignStr = """
+{
+ "Version": "1.0.0",
+ "SignBatches"
+ :
+ [
+ {
+ "SourceLocationType": "UNC",
+ "SourceRootDirectory": "%s",
+ "DestinationLocationType": "UNC",
+ "DestinationRootDirectory": "c:\\\\ESRP\\\\output",
+ "SignRequestFiles": [
+ {
+ "CustomerCorrelationId": "%s",
+ "SourceLocation": "libz3.dll",
+ "DestinationLocation": "libz3.dll"
+ },
+ {
+ "CustomerCorrelationId": "%s",
+ "SourceLocation": "Microsoft.Z3.dll",
+ "DestinationLocation": "Microsoft.Z3.dll"
+ }
+ ],
+ "SigningInfo": {
+ "Operations": [
+ {
+ "KeyCode" : "CP-230012",
+ "OperationCode" : "SigntoolSign",
+ "Parameters" : {
+ "OpusName": "Microsoft",
+ "OpusInfo": "http://www.microsoft.com",
+ "FileDigest": "/fd \\"SHA256\\"",
+ "PageHash": "/NPH",
+ "TimeStamp": "/tr \\"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\\" /td sha256"
+ },
+ "ToolName" : "sign",
+ "ToolVersion" : "1.0"
+ },
+ {
+ "KeyCode" : "CP-230012",
+ "OperationCode" : "SigntoolVerify",
+ "Parameters" : {},
+ "ToolName" : "sign",
+ "ToolVersion" : "1.0"
+ }
+ ]
+ }
+ }
+ ]
+} """ % (path, guid, guid)
+ assemblySign = os.path.join(os.path.abspath(BUILD_DIR), 'dotnet', 'assembly-sign-input.json')
+ with open(assemblySign, 'w') as ous:
+ ous.write(assemblySignStr)
+ outputFile = os.path.join(os.path.abspath(BUILD_DIR), 'dotnet', "esrp-out.json")
+ esrpCmdLine = ["esrpclient.exe", "sign", "-a", "C:\\esrp\\config\\authorization.json", "-p", "C:\\esrp\\config\\policy.json", "-i", assemblySign, "-o", outputFile]
+ MakeRuleCmd.write_cmd(out, ' '.join(esrpCmdLine))
+ MakeRuleCmd.write_cmd(out, "move /Y C:\\esrp\\output\\libz3.dll .")
+ MakeRuleCmd.write_cmd(out, "move /Y C:\\esrp\\output\\Microsoft.Z3.dll .")
+
+
+ def main_component(self):
+ return is_dotnet_core_enabled()
+
+ def has_assembly_info(self):
+ # TBD: is this required for dotnet core given that version numbers are in z3.csproj file?
+ return True
+
+
+ def mk_win_dist(self, build_path, dist_path):
+ if is_dotnet_core_enabled():
+ mk_dir(os.path.join(dist_path, INSTALL_BIN_DIR))
+ shutil.copy('%s.dll' % os.path.join(build_path, self.dll_name),
+ '%s.dll' % os.path.join(dist_path, INSTALL_BIN_DIR, self.dll_name))
+ shutil.copy('%s.deps.json' % os.path.join(build_path, self.dll_name),
+ '%s.deps.json' % os.path.join(dist_path, INSTALL_BIN_DIR, self.dll_name))
+ if DEBUG_MODE:
+ shutil.copy('%s.pdb' % os.path.join(build_path, self.dll_name),
+ '%s.pdb' % os.path.join(dist_path, INSTALL_BIN_DIR, self.dll_name))
+
+ def mk_unix_dist(self, build_path, dist_path):
+ if is_dotnet_core_enabled():
+ mk_dir(os.path.join(dist_path, INSTALL_BIN_DIR))
+ shutil.copy('%s.dll' % os.path.join(build_path, self.dll_name),
+ '%s.dll' % os.path.join(dist_path, INSTALL_BIN_DIR, self.dll_name))
+ shutil.copy('%s.deps.json' % os.path.join(build_path, self.dll_name),
+ '%s.deps.json' % os.path.join(dist_path, INSTALL_BIN_DIR, self.dll_name))
+
+ def mk_install_deps(self, out):
+ pass
+
+ def mk_install(self, out):
+ pass
+
+ def mk_uninstall(self, out):
+ pass
+
class JavaDLLComponent(Component):
def __init__(self, name, dll_name, package_name, manifest_file, path, deps):
Component.__init__(self, name, path, deps)
@@ -2204,7 +2424,7 @@ class DotNetExampleComponent(ExampleComponent):
ExampleComponent.__init__(self, name, path)
def is_example(self):
- return is_dotnet_enabled()
+ return is_dotnet_enabled() or is_dotnet_core_enabled()
def mk_makefile(self, out):
if is_dotnet_enabled():
@@ -2232,6 +2452,48 @@ class DotNetExampleComponent(ExampleComponent):
out.write(os.path.join(relative_path, csfile))
out.write('\n')
out.write('_ex_%s: %s\n\n' % (self.name, exefile))
+ if is_dotnet_core_enabled():
+ proj_name = 'dotnet_example.csproj'
+ out.write('_ex_%s:' % self.name)
+ for csfile in get_cs_files(self.ex_dir):
+ out.write(' ')
+ out.write(os.path.join(self.to_ex_dir, csfile))
+
+ mk_dir(os.path.join(BUILD_DIR, 'dotnet_example'))
+ csproj = os.path.join('dotnet_example', proj_name)
+ if VS_X64:
+ platform = 'x64'
+ elif VS_ARM:
+ platform = 'ARM'
+ else:
+ platform = 'x86'
+
+ dotnet_proj_str = """
+
+ Exe
+ netcoreapp2.0
+ %s
+
+
+
+
+ ..\Microsoft.Z3.dll
+
+
+""" % (platform, self.to_ex_dir)
+
+ with open(os.path.join(BUILD_DIR, csproj), 'w') as ous:
+ ous.write(dotnet_proj_str)
+
+ out.write('\n')
+ dotnetCmdLine = [DOTNET, "build", csproj]
+ dotnetCmdLine.extend(['-c'])
+ if DEBUG_MODE:
+ dotnetCmdLine.extend(['Debug'])
+ else:
+ dotnetCmdLine.extend(['Release'])
+ MakeRuleCmd.write_cmd(out, ' '.join(dotnetCmdLine))
+ out.write('\n')
class JavaExampleComponent(ExampleComponent):
def __init__(self, name, path):
@@ -2350,6 +2612,10 @@ def add_dot_net_dll(name, deps=[], path=None, dll_name=None, assembly_info_dir=N
c = DotNetDLLComponent(name, dll_name, path, deps, assembly_info_dir, default_key_file)
reg_component(name, c)
+def add_dot_net_core_dll(name, deps=[], path=None, dll_name=None, assembly_info_dir=None, default_key_file=None):
+ c = DotNetCoreDLLComponent(name, dll_name, path, deps, assembly_info_dir, default_key_file)
+ reg_component(name, c)
+
def add_java_dll(name, deps=[], path=None, dll_name=None, package_name=None, manifest_file=None):
c = JavaDLLComponent(name, dll_name, package_name, manifest_file, path, deps)
reg_component(name, c)
@@ -2442,7 +2708,7 @@ def mk_config():
'SLINK_FLAGS=/nologo /LDd\n' % static_opt)
if VS_X64:
config.write(
- 'CXXFLAGS=/c /Zi /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _AMD64_ /D _DEBUG /D Z3DEBUG /D _CONSOLE /D _TRACE /D _WINDOWS /Gm- /EHsc /RTC1 /GS /fp:precise /Zc:wchar_t /Zc:forScope /Gd /analyze- %s %s\n' % (extra_opt, static_opt))
+ 'CXXFLAGS=/c /Zi /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D Z3DEBUG /D _CONSOLE /D _TRACE /D _WINDOWS /Gm- /EHsc /RTC1 /GS /fp:precise /Zc:wchar_t /Zc:forScope /Gd /analyze- %s %s\n' % (extra_opt, static_opt))
config.write(
'LINK_EXTRA_FLAGS=/link /DEBUG /MACHINE:X64 /SUBSYSTEM:CONSOLE /INCREMENTAL:NO /STACK:8388608 /OPT:REF /OPT:ICF /TLBID:1 /DYNAMICBASE /NXCOMPAT %s\n'
'SLINK_EXTRA_FLAGS=/link /DEBUG /MACHINE:X64 /SUBSYSTEM:WINDOWS /INCREMENTAL:NO /STACK:8388608 /OPT:REF /OPT:ICF /TLBID:1 %s %s\n' % (link_extra_opt, maybe_disable_dynamic_base, link_extra_opt))
@@ -2467,7 +2733,7 @@ def mk_config():
extra_opt = '%s /D _TRACE ' % extra_opt
if VS_X64:
config.write(
- 'CXXFLAGS=/c%s /Zi /nologo /W3 /WX- /O2 /D _EXTERNAL_RELEASE /D WIN32 /D NDEBUG /D _LIB /D _WINDOWS /D _AMD64_ /D _UNICODE /D UNICODE /Gm- /EHsc /GS /fp:precise /Zc:wchar_t /Zc:forScope /Gd /TP %s %s\n' % (GL, extra_opt, static_opt))
+ 'CXXFLAGS=/c%s /Zi /nologo /W3 /WX- /O2 /D _EXTERNAL_RELEASE /D WIN32 /D NDEBUG /D _LIB /D _WINDOWS /D _UNICODE /D UNICODE /Gm- /EHsc /GS /fp:precise /Zc:wchar_t /Zc:forScope /Gd /TP %s %s\n' % (GL, extra_opt, static_opt))
config.write(
'LINK_EXTRA_FLAGS=/link%s /MACHINE:X64 /SUBSYSTEM:CONSOLE /INCREMENTAL:NO /STACK:8388608 %s\n'
'SLINK_EXTRA_FLAGS=/link%s /MACHINE:X64 /SUBSYSTEM:WINDOWS /INCREMENTAL:NO /STACK:8388608 %s\n' % (LTCG, link_extra_opt, LTCG, link_extra_opt))
@@ -2589,7 +2855,6 @@ def mk_config():
if is64():
if not sysname.startswith('CYGWIN') and not sysname.startswith('MSYS') and not sysname.startswith('MINGW'):
CXXFLAGS = '%s -fPIC' % CXXFLAGS
- CPPFLAGS = '%s -D_AMD64_' % CPPFLAGS
if sysname == 'Linux':
CPPFLAGS = '%s -D_USE_THREAD_LOCAL' % CPPFLAGS
elif not LINUX_X64:
@@ -2657,6 +2922,8 @@ def mk_config():
if is_dotnet_enabled():
print('C# Compiler: %s' % CSC)
print('GAC utility: %s' % GACUTIL)
+ if is_dotnet_core_enabled():
+ print('C# Compiler: %s' % DOTNET)
config.close()
@@ -2805,8 +3072,8 @@ def get_full_version_string(major, minor, build, revision):
# Update files with the version number
def mk_version_dot_h(major, minor, build, revision):
c = get_component(UTIL_COMPONENT)
- version_template = os.path.join(c.src_dir, 'version.h.in')
- version_header_output = os.path.join(c.src_dir, 'version.h')
+ version_template = os.path.join(c.src_dir, 'z3_version.h.in')
+ version_header_output = os.path.join(c.src_dir, 'z3_version.h')
# Note the substitution names are what is used by the CMake
# builds system. If you change these you should change them
# in the CMake build too
@@ -2982,6 +3249,9 @@ def mk_bindings(api_files):
dotnet_output_dir = None
if is_dotnet_enabled():
dotnet_output_dir = get_component('dotnet').src_dir
+ elif is_dotnet_core_enabled():
+ dotnet_output_dir = os.path.join(BUILD_DIR, 'dotnet')
+ mk_dir(dotnet_output_dir)
java_output_dir = None
java_package_name = None
if is_java_enabled():
@@ -3010,7 +3280,10 @@ def mk_bindings(api_files):
mk_z3consts_ml(api_files)
if is_dotnet_enabled():
check_dotnet()
- mk_z3consts_dotnet(api_files)
+ mk_z3consts_dotnet(api_files, dotnet_output_dir)
+ if is_dotnet_core_enabled():
+ check_dotnet_core()
+ mk_z3consts_dotnet(api_files, dotnet_output_dir)
# Extract enumeration types from API files, and add python definitions.
def mk_z3consts_py(api_files):
@@ -3027,14 +3300,16 @@ def mk_z3consts_py(api_files):
print("Generated '{}".format(generated_file))
# Extract enumeration types from z3_api.h, and add .Net definitions
-def mk_z3consts_dotnet(api_files):
+def mk_z3consts_dotnet(api_files, output_dir):
dotnet = get_component(DOTNET_COMPONENT)
+ if not dotnet:
+ dotnet = get_component(DOTNET_CORE_COMPONENT)
full_path_api_files = []
for api_file in api_files:
api_file_c = dotnet.find_file(api_file, dotnet.name)
api_file = os.path.join(api_file_c.src_dir, api_file)
full_path_api_files.append(api_file)
- generated_file = mk_genfile_common.mk_z3consts_dotnet_internal(full_path_api_files, dotnet.src_dir)
+ generated_file = mk_genfile_common.mk_z3consts_dotnet_internal(full_path_api_files, output_dir)
if VERBOSE:
print("Generated '{}".format(generated_file))
@@ -3279,7 +3554,7 @@ class MakeRuleCmd(object):
needed commands used in Makefile rules
Note that several of the method are meant for use during ``make
install`` and ``make uninstall``. These methods correctly use
- ``$(PREFIX)`` and ``$(DESTDIR)`` and therefore are preferrable
+ ``$(PREFIX)`` and ``$(DESTDIR)`` and therefore are preferable
to writing commands manually which can be error prone.
"""
@classmethod
diff --git a/scripts/mk_win_dist.py b/scripts/mk_win_dist.py
index 384e1d080..2a88c625c 100644
--- a/scripts/mk_win_dist.py
+++ b/scripts/mk_win_dist.py
@@ -25,6 +25,8 @@ VERBOSE=True
DIST_DIR='dist'
FORCE_MK=False
DOTNET_ENABLED=True
+DOTNET_CORE_ENABLED=False
+ESRP_SIGN=False
DOTNET_KEY_FILE=None
JAVA_ENABLED=True
GIT_HASH=False
@@ -62,7 +64,9 @@ def display_help():
print(" -b , --build= subdirectory where x86 and x64 Z3 versions will be built (default: build-dist).")
print(" -f, --force force script to regenerate Makefiles.")
print(" --nodotnet do not include .NET bindings in the binary distribution files.")
+ print(" --dotnetcore build for dotnet core.")
print(" --dotnet-key= sign the .NET assembly with the private key in .")
+ print(" --esrp sign with esrp.")
print(" --nojava do not include Java bindings in the binary distribution files.")
print(" --nopython do not include Python bindings in the binary distribution files.")
print(" --githash include git hash in the Zip file.")
@@ -72,7 +76,7 @@ def display_help():
# Parse configuration option for mk_make script
def parse_options():
- global FORCE_MK, JAVA_ENABLED, GIT_HASH, DOTNET_ENABLED, DOTNET_KEY_FILE, PYTHON_ENABLED, X86ONLY, X64ONLY
+ global FORCE_MK, JAVA_ENABLED, GIT_HASH, DOTNET_ENABLED, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, PYTHON_ENABLED, X86ONLY, X64ONLY, ESRP_SIGN
path = BUILD_DIR
options, remainder = getopt.gnu_getopt(sys.argv[1:], 'b:hsf', ['build=',
'help',
@@ -80,7 +84,9 @@ def parse_options():
'force',
'nojava',
'nodotnet',
+ 'dotnetcore',
'dotnet-key=',
+ 'esrp',
'githash',
'nopython',
'x86-only',
@@ -99,10 +105,15 @@ def parse_options():
FORCE_MK = True
elif opt == '--nodotnet':
DOTNET_ENABLED = False
+ elif opt == '--dotnetcore':
+ DOTNET_CORE_ENABLED = True
+ DOTNET_ENABLED = False
elif opt == '--nopython':
PYTHON_ENABLED = False
elif opt == '--dotnet-key':
DOTNET_KEY_FILE = arg
+ elif opt == '--esrp':
+ ESRP_SIGN = True
elif opt == '--nojava':
JAVA_ENABLED = False
elif opt == '--githash':
@@ -124,7 +135,11 @@ def mk_build_dir(path, x64):
if not check_build_dir(path) or FORCE_MK:
parallel = '--parallel=' + MAKEJOBS
opts = ["python", os.path.join('scripts', 'mk_make.py'), parallel, "-b", path]
- if DOTNET_ENABLED:
+ if DOTNET_CORE_ENABLED:
+ opts.append('--dotnetcore')
+ if not DOTNET_KEY_FILE is None:
+ opts.append('--dotnet-key=' + DOTNET_KEY_FILE)
+ elif DOTNET_ENABLED:
opts.append('--dotnet')
if not DOTNET_KEY_FILE is None:
opts.append('--dotnet-key=' + DOTNET_KEY_FILE)
@@ -132,6 +147,8 @@ def mk_build_dir(path, x64):
opts.append('--java')
if x64:
opts.append('-x')
+ if ESRP_SIGN:
+ opts.append('--esrp')
if GIT_HASH:
opts.append('--githash=%s' % mk_util.git_hash())
opts.append('--git-describe')
@@ -200,6 +217,7 @@ def get_z3_name(x64):
return 'z3-%s.%s.%s-%s-win' % (major, minor, build, platform)
def mk_dist_dir(x64):
+ global ESRP_SIGN
if x64:
platform = "x64"
build_path = BUILD_X64_DIR
@@ -208,7 +226,11 @@ def mk_dist_dir(x64):
build_path = BUILD_X86_DIR
dist_path = os.path.join(DIST_DIR, get_z3_name(x64))
mk_dir(dist_path)
- mk_util.DOTNET_ENABLED = DOTNET_ENABLED
+ mk_util.ESRP_SIGN = ESRP_SIGN
+ if DOTNET_CORE_ENABLED:
+ mk_util.DOTNET_CORE_ENABLED = True
+ else:
+ mk_util.DOTNET_ENABLED = DOTNET_ENABLED
mk_util.DOTNET_KEY_FILE = DOTNET_KEY_FILE
mk_util.JAVA_ENABLED = JAVA_ENABLED
mk_util.PYTHON_ENABLED = PYTHON_ENABLED
@@ -257,19 +279,30 @@ def cp_vs_runtime(x64):
else:
platform = "x86"
vcdir = os.environ['VCINSTALLDIR']
- path = '%sredist\\%s' % (vcdir, platform)
- VS_RUNTIME_FILES = []
+ path = '%sredist' % vcdir
+ vs_runtime_files = []
+ print("Walking %s" % path)
+ # Everything changes with every release of VS
+ # Prior versions of VS had DLLs under "redist\x64"
+ # There are now several variants of redistributables
+ # The naming convention defies my understanding so
+ # we use a "check_root" filter to find some hopefully suitable
+ # redistributable.
+ def check_root(root):
+ return platform in root and ("CRT" in root or "MP" in root) and "onecore" not in root and "debug" not in root
for root, dirs, files in os.walk(path):
for filename in files:
- if fnmatch(filename, '*.dll'):
+ if fnmatch(filename, '*.dll') and check_root(root):
+ print("Checking %s %s" % (root, filename))
for pat in VS_RUNTIME_PATS:
if pat.match(filename):
fname = os.path.join(root, filename)
if not os.path.isdir(fname):
- VS_RUNTIME_FILES.append(fname)
-
+ vs_runtime_files.append(fname)
+ if not vs_runtime_files:
+ raise MKException("Did not find any runtime files to include")
bin_dist_path = os.path.join(DIST_DIR, get_dist_path(x64), 'bin')
- for f in VS_RUNTIME_FILES:
+ for f in vs_runtime_files:
shutil.copy(f, bin_dist_path)
if is_verbose():
print("Copied '%s' to '%s'" % (f, bin_dist_path))
diff --git a/scripts/update_api.py b/scripts/update_api.py
index 917df94a2..161c783e8 100755
--- a/scripts/update_api.py
+++ b/scripts/update_api.py
@@ -61,7 +61,7 @@ def is_obj(ty):
return ty >= FIRST_OBJ_ID
Type2Str = { VOID : 'void', VOID_PTR : 'void*', INT : 'int', UINT : 'unsigned', INT64 : 'int64_t', UINT64 : 'uint64_t', DOUBLE : 'double',
- FLOAT : 'float', STRING : 'Z3_string', STRING_PTR : 'Z3_string_ptr', BOOL : 'Z3_bool', SYMBOL : 'Z3_symbol',
+ FLOAT : 'float', STRING : 'Z3_string', STRING_PTR : 'Z3_string_ptr', BOOL : 'bool', SYMBOL : 'Z3_symbol',
PRINT_MODE : 'Z3_ast_print_mode', ERROR_CODE : 'Z3_error_code'
}
@@ -584,7 +584,7 @@ def mk_java(java_dir, package_name):
java_wrapper.write('extern "C" {\n')
java_wrapper.write('#endif\n\n')
java_wrapper.write('#ifdef __GNUC__\n#if __GNUC__ >= 4\n#define DLL_VIS __attribute__ ((visibility ("default")))\n#else\n#define DLL_VIS\n#endif\n#else\n#define DLL_VIS\n#endif\n\n')
- java_wrapper.write('#if defined(_M_X64) || defined(_AMD64_)\n\n')
+ java_wrapper.write('#if defined(__LP64__) || defined(_WIN64)\n\n')
java_wrapper.write('#define GETLONGAELEMS(T,OLD,NEW) \\\n')
java_wrapper.write(' T * NEW = (OLD == 0) ? 0 : (T*) jenv->GetLongArrayElements(OLD, NULL);\n')
java_wrapper.write('#define RELEASELONGAELEMS(OLD,NEW) \\\n')
@@ -1227,7 +1227,7 @@ def ml_has_plus_type(ts):
def ml_unwrap(t, ts, s):
if t == STRING:
return '(' + ts + ') String_val(' + s + ')'
- elif t == BOOL or (type2str(t) == 'Z3_bool'):
+ elif t == BOOL or (type2str(t) == 'bool'):
return '(' + ts + ') Bool_val(' + s + ')'
elif t == INT or t == PRINT_MODE or t == ERROR_CODE:
return '(' + ts + ') Int_val(' + s + ')'
@@ -1248,7 +1248,7 @@ def ml_unwrap(t, ts, s):
def ml_set_wrap(t, d, n):
if t == VOID:
return d + ' = Val_unit;'
- elif t == BOOL or (type2str(t) == 'Z3_bool'):
+ elif t == BOOL or (type2str(t) == 'bool'):
return d + ' = Val_bool(' + n + ');'
elif t == INT or t == UINT or t == PRINT_MODE or t == ERROR_CODE:
return d + ' = Val_int(' + n + ');'
@@ -1263,7 +1263,7 @@ def ml_set_wrap(t, d, n):
return '*(' + pts + '*)Data_custom_val(' + d + ') = ' + n + ';'
def ml_alloc_and_store(t, lhs, rhs):
- if t == VOID or t == BOOL or t == INT or t == UINT or t == PRINT_MODE or t == ERROR_CODE or t == INT64 or t == UINT64 or t == DOUBLE or t == STRING or (type2str(t) == 'Z3_bool'):
+ if t == VOID or t == BOOL or t == INT or t == UINT or t == PRINT_MODE or t == ERROR_CODE or t == INT64 or t == UINT64 or t == DOUBLE or t == STRING or (type2str(t) == 'bool'):
return ml_set_wrap(t, lhs, rhs)
else:
pts = ml_plus_type(type2str(t))
@@ -1328,6 +1328,17 @@ def mk_ml(ml_src_dir, ml_output_dir):
mk_z3native_stubs_c(ml_src_dir, ml_output_dir)
+z3_long_funs = frozenset([
+ 'Z3_solver_check',
+ 'Z3_solver_check_assumptions',
+ 'Z3_simplify',
+ 'Z3_simplify_ex',
+ ])
+
+z3_ml_overrides = frozenset([
+ 'Z3_mk_config'
+ ])
+
def mk_z3native_stubs_c(ml_src_dir, ml_output_dir): # C interface
ml_wrapperf = os.path.join(ml_output_dir, 'z3native_stubs.c')
ml_wrapper = open(ml_wrapperf, 'w')
@@ -1339,6 +1350,10 @@ def mk_z3native_stubs_c(ml_src_dir, ml_output_dir): # C interface
ml_pref.close()
for name, result, params in _dotnet_decls:
+
+ if name in z3_ml_overrides:
+ continue
+
ip = inparams(params)
op = outparams(params)
ap = arrayparams(params)
@@ -1491,6 +1506,10 @@ def mk_z3native_stubs_c(ml_src_dir, ml_output_dir): # C interface
ml_wrapper.write(' assert(_iter == Val_emptylist);\n\n')
i = i + 1
+ release_caml_gc= name in z3_long_funs
+ if release_caml_gc:
+ ml_wrapper.write('\n caml_release_runtime_system();\n')
+
ml_wrapper.write('\n /* invoke Z3 function */\n ')
if result != VOID:
ts = type2str(result)
@@ -1499,6 +1518,7 @@ def mk_z3native_stubs_c(ml_src_dir, ml_output_dir): # C interface
else:
ml_wrapper.write('z3rv = ')
+
# invoke procedure
ml_wrapper.write('%s(' % name)
i = 0
@@ -1516,6 +1536,14 @@ def mk_z3native_stubs_c(ml_src_dir, ml_output_dir): # C interface
i = i + 1
ml_wrapper.write(');\n')
+ if name in NULLWrapped:
+ ml_wrapper.write(' if (z3rv_m == NULL) {\n')
+ ml_wrapper.write(' caml_raise_with_string(*caml_named_value("Z3EXCEPTION"), "Object allocation failed");\n')
+ ml_wrapper.write(' }\n')
+
+ if release_caml_gc:
+ ml_wrapper.write('\n caml_acquire_runtime_system();\n')
+
if have_context and name not in Unwrapped:
ml_wrapper.write(' ec = Z3_get_error_code(ctx_p->ctx);\n')
ml_wrapper.write(' if (ec != Z3_OK) {\n')
@@ -1868,7 +1896,7 @@ def generate_files(api_files,
mk_dotnet_wrappers(dotnet_file)
if mk_util.is_verbose():
print("Generated '{}'".format(dotnet_file.name))
-
+
if java_output_dir:
mk_java(java_output_dir, java_package_name)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 826f87e8c..c497c19ee 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -166,6 +166,8 @@ foreach (header ${libz3_public_headers})
set_property(TARGET libz3 APPEND PROPERTY
PUBLIC_HEADER "${CMAKE_SOURCE_DIR}/src/api/${header}")
endforeach()
+set_property(TARGET libz3 APPEND PROPERTY
+ PUBLIC_HEADER "${CMAKE_CURRENT_BINARY_DIR}/util/z3_version.h")
install(TARGETS libz3
EXPORT Z3_EXPORTED_TARGETS
diff --git a/src/ackermannization/lackr.cpp b/src/ackermannization/lackr.cpp
index 8c18df7b2..9130d628c 100644
--- a/src/ackermannization/lackr.cpp
+++ b/src/ackermannization/lackr.cpp
@@ -220,7 +220,7 @@ lbool lackr::lazy() {
lackr_model_constructor mc(m_m, m_info);
push_abstraction();
unsigned ackr_head = 0;
- while (1) {
+ while (true) {
m_st.m_it++;
checkpoint();
TRACE("lackr", tout << "lazy check: " << m_st.m_it << "\n";);
diff --git a/src/ackermannization/lackr.h b/src/ackermannization/lackr.h
index 98c1988f7..049fb8bb3 100644
--- a/src/ackermannization/lackr.h
+++ b/src/ackermannization/lackr.h
@@ -102,7 +102,7 @@ class lackr {
//
// Introduce congruence ackermann lemma for the two given terms.
//
- bool ackr(app * const t1, app * const t2);
+ bool ackr(app * t1, app * t2);
//
// Introduce the ackermann lemma for each pair of terms.
diff --git a/src/ackermannization/lackr_model_constructor.cpp b/src/ackermannization/lackr_model_constructor.cpp
index 420fbda10..df0aac15e 100644
--- a/src/ackermannization/lackr_model_constructor.cpp
+++ b/src/ackermannization/lackr_model_constructor.cpp
@@ -276,7 +276,7 @@ struct lackr_model_constructor::imp {
SASSERT(a->get_num_args() == 0);
func_decl * const fd = a->get_decl();
expr * val = m_abstr_model->get_const_interp(fd);
- if (val == nullptr) { // TODO: avoid model completetion?
+ if (val == nullptr) { // TODO: avoid model completion?
sort * s = fd->get_range();
val = m_abstr_model->get_some_value(s);
}
diff --git a/src/api/api_algebraic.cpp b/src/api/api_algebraic.cpp
index 1bb1b6a51..7d08ade35 100644
--- a/src/api/api_algebraic.cpp
+++ b/src/api/api_algebraic.cpp
@@ -79,23 +79,23 @@ extern "C" {
_c->autil().is_irrational_algebraic_numeral(to_expr(a)));
}
- Z3_bool Z3_API Z3_algebraic_is_value(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_algebraic_is_value(Z3_context c, Z3_ast a) {
Z3_TRY;
LOG_Z3_algebraic_is_value(c, a);
RESET_ERROR_CODE();
- return Z3_algebraic_is_value_core(c, a) ? Z3_TRUE : Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return Z3_algebraic_is_value_core(c, a);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_algebraic_is_pos(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_algebraic_is_pos(Z3_context c, Z3_ast a) {
return Z3_algebraic_sign(c, a) > 0;
}
- Z3_bool Z3_API Z3_algebraic_is_neg(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_algebraic_is_neg(Z3_context c, Z3_ast a) {
return Z3_algebraic_sign(c, a) < 0;
}
- Z3_bool Z3_API Z3_algebraic_is_zero(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_algebraic_is_zero(Z3_context c, Z3_ast a) {
return Z3_algebraic_sign(c, a) == 0;
}
@@ -283,32 +283,32 @@ extern "C" {
r = _am.IRAT_PRED(av, bv); \
} \
} \
- return r ? Z3_TRUE : Z3_FALSE;
+ return r;
- Z3_bool Z3_API Z3_algebraic_lt(Z3_context c, Z3_ast a, Z3_ast b) {
+ bool Z3_API Z3_algebraic_lt(Z3_context c, Z3_ast a, Z3_ast b) {
Z3_TRY;
LOG_Z3_algebraic_lt(c, a, b);
RESET_ERROR_CODE();
CHECK_IS_ALGEBRAIC(a, 0);
CHECK_IS_ALGEBRAIC(b, 0);
BIN_PRED(<,lt);
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_algebraic_gt(Z3_context c, Z3_ast a, Z3_ast b) {
+ bool Z3_API Z3_algebraic_gt(Z3_context c, Z3_ast a, Z3_ast b) {
return Z3_algebraic_lt(c, b, a);
}
- Z3_bool Z3_API Z3_algebraic_le(Z3_context c, Z3_ast a, Z3_ast b) {
+ bool Z3_API Z3_algebraic_le(Z3_context c, Z3_ast a, Z3_ast b) {
return !Z3_algebraic_lt(c, b, a);
}
- Z3_bool Z3_API Z3_algebraic_ge(Z3_context c, Z3_ast a, Z3_ast b) {
+ bool Z3_API Z3_algebraic_ge(Z3_context c, Z3_ast a, Z3_ast b) {
return !Z3_algebraic_lt(c, a, b);
}
- Z3_bool Z3_API Z3_algebraic_eq(Z3_context c, Z3_ast a, Z3_ast b) {
+ bool Z3_API Z3_algebraic_eq(Z3_context c, Z3_ast a, Z3_ast b) {
Z3_TRY;
LOG_Z3_algebraic_eq(c, a, b);
RESET_ERROR_CODE();
@@ -318,7 +318,7 @@ extern "C" {
Z3_CATCH_RETURN(0);
}
- Z3_bool Z3_API Z3_algebraic_neq(Z3_context c, Z3_ast a, Z3_ast b) {
+ bool Z3_API Z3_algebraic_neq(Z3_context c, Z3_ast a, Z3_ast b) {
return !Z3_algebraic_eq(c, a, b);
}
diff --git a/src/api/api_arith.cpp b/src/api/api_arith.cpp
index f46f56ef2..69fde33a7 100644
--- a/src/api/api_arith.cpp
+++ b/src/api/api_arith.cpp
@@ -119,9 +119,9 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_algebraic_number(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_algebraic_number(Z3_context c, Z3_ast a) {
LOG_Z3_is_algebraic_number(c, a);
- return mk_c(c)->autil().is_irrational_algebraic_numeral(to_expr(a)) ? Z3_TRUE : Z3_FALSE;
+ return mk_c(c)->autil().is_irrational_algebraic_numeral(to_expr(a));
}
Z3_ast Z3_API Z3_get_algebraic_number_lower(Z3_context c, Z3_ast a, unsigned precision) {
diff --git a/src/api/api_ast.cpp b/src/api/api_ast.cpp
index 52be66e77..eeb85687d 100644
--- a/src/api/api_ast.cpp
+++ b/src/api/api_ast.cpp
@@ -33,11 +33,15 @@ Revision History:
#include "ast/rewriter/th_rewriter.h"
#include "ast/rewriter/var_subst.h"
#include "ast/rewriter/expr_safe_replace.h"
+#include "ast/rewriter/recfun_replace.h"
+#include "ast/rewriter/seq_rewriter.h"
#include "ast/pp.h"
#include "util/scoped_ctrl_c.h"
#include "util/cancel_eh.h"
#include "util/scoped_timer.h"
#include "ast/pp_params.hpp"
+#include "ast/expr_abstract.h"
+
extern bool is_numeral_sort(Z3_context c, Z3_sort ty);
@@ -70,7 +74,7 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_eq_sort(Z3_context c, Z3_sort s1, Z3_sort s2) {
+ bool Z3_API Z3_is_eq_sort(Z3_context c, Z3_sort s1, Z3_sort s2) {
RESET_ERROR_CODE();
return s1 == s2;
}
@@ -85,12 +89,12 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_eq_ast(Z3_context c, Z3_ast s1, Z3_ast s2) {
+ bool Z3_API Z3_is_eq_ast(Z3_context c, Z3_ast s1, Z3_ast s2) {
RESET_ERROR_CODE();
return s1 == s2;
}
- Z3_bool Z3_API Z3_is_eq_func_decl(Z3_context c, Z3_func_decl s1, Z3_func_decl s2) {
+ bool Z3_API Z3_is_eq_func_decl(Z3_context c, Z3_func_decl s1, Z3_func_decl s2) {
RESET_ERROR_CODE();
return s1 == s2;
}
@@ -110,6 +114,55 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
+ Z3_func_decl Z3_API Z3_mk_rec_func_decl(Z3_context c, Z3_symbol s, unsigned domain_size, Z3_sort const* domain,
+ Z3_sort range) {
+ Z3_TRY;
+ LOG_Z3_mk_rec_func_decl(c, s, domain_size, domain, range);
+ RESET_ERROR_CODE();
+ //
+ recfun::promise_def def =
+ mk_c(c)->recfun().get_plugin().mk_def(to_symbol(s),
+ domain_size,
+ to_sorts(domain),
+ to_sort(range));
+ func_decl* d = def.get_def()->get_decl();
+ mk_c(c)->save_ast_trail(d);
+ RETURN_Z3(of_func_decl(d));
+ Z3_CATCH_RETURN(nullptr);
+ }
+
+ void Z3_API Z3_add_rec_def(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast args[], Z3_ast body) {
+ Z3_TRY;
+ LOG_Z3_add_rec_def(c, f, n, args, body);
+ func_decl* d = to_func_decl(f);
+ ast_manager& m = mk_c(c)->m();
+ recfun::decl::plugin& p = mk_c(c)->recfun().get_plugin();
+ expr_ref abs_body(m);
+ expr_ref_vector _args(m);
+ var_ref_vector _vars(m);
+ for (unsigned i = 0; i < n; ++i) {
+ _args.push_back(to_expr(args[i]));
+ _vars.push_back(m.mk_var(n - i - 1, m.get_sort(_args.back())));
+ if (m.get_sort(_args.back()) != d->get_domain(i)) {
+ SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
+ return;
+ }
+ }
+ expr_abstract(m, 0, n, _args.c_ptr(), to_expr(body), abs_body);
+ recfun::promise_def pd = p.get_promise_def(d);
+ if (!pd.get_def()) {
+ SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
+ return;
+ }
+ if (m.get_sort(abs_body) != d->get_range()) {
+ SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
+ return;
+ }
+ recfun_replace replace(m);
+ p.set_definition(replace, pd, n, _vars.c_ptr(), abs_body);
+ Z3_CATCH;
+ }
+
Z3_ast Z3_API Z3_mk_app(Z3_context c, Z3_func_decl d, unsigned num_args, Z3_ast const * args) {
Z3_TRY;
LOG_Z3_mk_app(c, d, num_args, args);
@@ -256,12 +309,12 @@ extern "C" {
return to_sort(s)->get_id();
}
- Z3_bool Z3_API Z3_is_well_sorted(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_is_well_sorted(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_is_well_sorted(c, t);
RESET_ERROR_CODE();
return is_well_sorted(mk_c(c)->m(), to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
Z3_symbol_kind Z3_API Z3_get_symbol_kind(Z3_context c, Z3_symbol s) {
@@ -331,7 +384,7 @@ extern "C" {
return to_ast(a)->hash();
}
- Z3_bool Z3_API Z3_is_app(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_app(Z3_context c, Z3_ast a) {
LOG_Z3_is_app(c, a);
RESET_ERROR_CODE();
return a != nullptr && is_app(reinterpret_cast(a));
@@ -468,7 +521,7 @@ extern "C" {
Z3_TRY;
LOG_Z3_get_decl_symbol_parameter(c, d, idx);
RESET_ERROR_CODE();
- CHECK_VALID_AST(d, 0);
+ CHECK_VALID_AST(d, nullptr);
if (idx >= to_func_decl(d)->get_num_parameters()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
return nullptr;
@@ -486,7 +539,7 @@ extern "C" {
Z3_TRY;
LOG_Z3_get_decl_sort_parameter(c, d, idx);
RESET_ERROR_CODE();
- CHECK_VALID_AST(d, 0);
+ CHECK_VALID_AST(d, nullptr);
if (idx >= to_func_decl(d)->get_num_parameters()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
RETURN_Z3(nullptr);
@@ -504,7 +557,7 @@ extern "C" {
Z3_TRY;
LOG_Z3_get_decl_ast_parameter(c, d, idx);
RESET_ERROR_CODE();
- CHECK_VALID_AST(d, 0);
+ CHECK_VALID_AST(d, nullptr);
if (idx >= to_func_decl(d)->get_num_parameters()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
RETURN_Z3(nullptr);
@@ -522,7 +575,7 @@ extern "C" {
Z3_TRY;
LOG_Z3_get_decl_func_decl_parameter(c, d, idx);
RESET_ERROR_CODE();
- CHECK_VALID_AST(d, 0);
+ CHECK_VALID_AST(d, nullptr);
if (idx >= to_func_decl(d)->get_num_parameters()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
RETURN_Z3(nullptr);
@@ -596,7 +649,7 @@ extern "C" {
Z3_TRY;
LOG_Z3_get_domain(c, d, i);
RESET_ERROR_CODE();
- CHECK_VALID_AST(d, 0);
+ CHECK_VALID_AST(d, nullptr);
if (i >= to_func_decl(d)->get_arity()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
RETURN_Z3(nullptr);
@@ -681,6 +734,7 @@ extern "C" {
Z3_CATCH_RETURN(Z3_L_UNDEF);
}
+
static Z3_ast simplify(Z3_context c, Z3_ast _a, Z3_params _p) {
Z3_TRY;
RESET_ERROR_CODE();
@@ -690,6 +744,7 @@ extern "C" {
unsigned timeout = p.get_uint("timeout", mk_c(c)->get_timeout());
bool use_ctrl_c = p.get_bool("ctrl_c", false);
th_rewriter m_rw(m, p);
+ m_rw.set_solver(alloc(api::seq_expr_solver, m, p));
expr_ref result(m);
cancel_eh eh(m.limit());
api::context::set_interruptable si(*(mk_c(c)), eh);
diff --git a/src/api/api_ast_map.cpp b/src/api/api_ast_map.cpp
index 44cadc691..aaece1621 100644
--- a/src/api/api_ast_map.cpp
+++ b/src/api/api_ast_map.cpp
@@ -57,12 +57,12 @@ extern "C" {
Z3_CATCH;
}
- Z3_bool Z3_API Z3_ast_map_contains(Z3_context c, Z3_ast_map m, Z3_ast k) {
+ bool Z3_API Z3_ast_map_contains(Z3_context c, Z3_ast_map m, Z3_ast k) {
Z3_TRY;
LOG_Z3_ast_map_contains(c, m, k);
RESET_ERROR_CODE();
return to_ast_map_ref(m).contains(to_ast(k));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
Z3_ast Z3_API Z3_ast_map_find(Z3_context c, Z3_ast_map m, Z3_ast k) {
diff --git a/src/api/api_bv.cpp b/src/api/api_bv.cpp
index bd603aa6d..e56371bb5 100644
--- a/src/api/api_bv.cpp
+++ b/src/api/api_bv.cpp
@@ -106,7 +106,7 @@ Z3_ast Z3_API NAME(Z3_context c, unsigned i, Z3_ast n) { \
MK_BV_PUNARY(Z3_mk_rotate_right, OP_ROTATE_RIGHT);
MK_BV_PUNARY(Z3_mk_int2bv, OP_INT2BV);
- Z3_ast Z3_API Z3_mk_bv2int(Z3_context c, Z3_ast n, Z3_bool is_signed) {
+ Z3_ast Z3_API Z3_mk_bv2int(Z3_context c, Z3_ast n, bool is_signed) {
Z3_TRY;
LOG_Z3_mk_bv2int(c, n, is_signed);
RESET_ERROR_CODE();
@@ -186,7 +186,7 @@ Z3_ast Z3_API NAME(Z3_context c, unsigned i, Z3_ast n) { \
return Z3_mk_int(c, -1, s);
}
- Z3_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed) {
+ Z3_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed) {
Z3_TRY;
RESET_ERROR_CODE();
if (is_signed) {
@@ -286,7 +286,7 @@ Z3_ast Z3_API NAME(Z3_context c, unsigned i, Z3_ast n) { \
Z3_CATCH_RETURN(nullptr);
}
- Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed) {
+ Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed) {
Z3_TRY;
RESET_ERROR_CODE();
if (is_signed) {
@@ -311,7 +311,7 @@ Z3_ast Z3_API NAME(Z3_context c, unsigned i, Z3_ast n) { \
Z3_CATCH_RETURN(nullptr);
}
- Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast n1, Z3_ast n2, Z3_bool is_signed) {
+ Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast n1, Z3_ast n2, bool is_signed) {
LOG_Z3_mk_bvmul_no_overflow(c, n1, n2, is_signed);
RESET_ERROR_CODE();
if (is_signed) {
diff --git a/src/api/api_config_params.cpp b/src/api/api_config_params.cpp
index 604177561..60d5fa556 100644
--- a/src/api/api_config_params.cpp
+++ b/src/api/api_config_params.cpp
@@ -57,21 +57,28 @@ extern "C" {
try {
g_Z3_global_param_get_buffer = gparams::get_value(param_id);
*param_value = g_Z3_global_param_get_buffer.c_str();
- return Z3_TRUE;
+ return true;
}
catch (z3_exception & ex) {
// The error handler is only available for contexts
// Just throw a warning.
warning_msg("%s", ex.msg());
- return Z3_FALSE;
+ return false;
}
}
Z3_config Z3_API Z3_mk_config(void) {
- memory::initialize(UINT_MAX);
- LOG_Z3_mk_config();
- Z3_config r = reinterpret_cast(alloc(context_params));
- RETURN_Z3(r);
+ try {
+ memory::initialize(UINT_MAX);
+ LOG_Z3_mk_config();
+ Z3_config r = reinterpret_cast(alloc(context_params));
+ RETURN_Z3(r);
+ } catch (z3_exception & ex) {
+ // The error handler is only available for contexts
+ // Just throw a warning.
+ warning_msg("%s", ex.msg());
+ return nullptr;
+ }
}
void Z3_API Z3_del_config(Z3_config c) {
diff --git a/src/api/api_context.cpp b/src/api/api_context.cpp
index cc2a13aed..a2492cb1a 100644
--- a/src/api/api_context.cpp
+++ b/src/api/api_context.cpp
@@ -19,7 +19,7 @@ Revision History:
--*/
#include
#include "api/api_context.h"
-#include "util/version.h"
+#include "util/z3_version.h"
#include "ast/ast_pp.h"
#include "ast/ast_ll_pp.h"
#include "api/api_log_macros.h"
@@ -79,6 +79,7 @@ namespace api {
m_datalog_util(m()),
m_fpa_util(m()),
m_sutil(m()),
+ m_recfun(m()),
m_last_result(m()),
m_ast_trail(m()),
m_pmanager(m_limit) {
@@ -108,13 +109,10 @@ namespace api {
context::~context() {
m_last_obj = nullptr;
- u_map::iterator it = m_allocated_objects.begin();
- while (it != m_allocated_objects.end()) {
- api::object* val = it->m_value;
- DEBUG_CODE(warning_msg("Uncollected memory: %d: %s", it->m_key, typeid(*val).name()););
- m_allocated_objects.remove(it->m_key);
+ for (auto& kv : m_allocated_objects) {
+ api::object* val = kv.m_value;
+ DEBUG_CODE(warning_msg("Uncollected memory: %d: %s", kv.m_key, typeid(*val).name()););
dealloc(val);
- it = m_allocated_objects.begin();
}
}
@@ -219,7 +217,7 @@ namespace api {
if (m_user_ref_count) {
// Corner case bug: n may be in m_last_result, and this is the only reference to n.
// When, we execute reset() it is deleted
- // To avoid this bug, I bump the reference counter before reseting m_last_result
+ // To avoid this bug, I bump the reference counter before resetting m_last_result
ast_ref node(n, m());
m_last_result.reset();
m_last_result.push_back(std::move(node));
@@ -362,7 +360,7 @@ extern "C" {
Z3_CATCH;
}
- void Z3_API Z3_toggle_warning_messages(Z3_bool enabled) {
+ void Z3_API Z3_toggle_warning_messages(bool enabled) {
LOG_Z3_toggle_warning_messages(enabled);
enable_warning_messages(enabled != 0);
}
@@ -439,7 +437,6 @@ extern "C" {
void Z3_API Z3_set_error_handler(Z3_context c, Z3_error_handler h) {
RESET_ERROR_CODE();
mk_c(c)->set_error_handler(h);
- // [Leo]: using exception handling, we don't need global error handlers anymore
}
void Z3_API Z3_set_error(Z3_context c, Z3_error_code e) {
@@ -489,9 +486,3 @@ extern "C" {
}
};
-
-Z3_API ast_manager& Z3_get_manager(Z3_context c) {
- return mk_c(c)->m();
-}
-
-
diff --git a/src/api/api_context.h b/src/api/api_context.h
index a6f55d1aa..aacd4edd3 100644
--- a/src/api/api_context.h
+++ b/src/api/api_context.h
@@ -29,6 +29,7 @@ Revision History:
#include "ast/datatype_decl_plugin.h"
#include "ast/dl_decl_plugin.h"
#include "ast/fpa_decl_plugin.h"
+#include "ast/recfun_decl_plugin.h"
#include "smt/smt_kernel.h"
#include "smt/params/smt_params.h"
#include "util/event_handler.h"
@@ -37,6 +38,9 @@ Revision History:
#include "cmd_context/cmd_context.h"
#include "api/api_polynomial.h"
#include "util/hashtable.h"
+#include "ast/rewriter/seq_rewriter.h"
+#include "smt/smt_solver.h"
+#include "solver/solver.h"
namespace smtlib {
class parser;
@@ -48,6 +52,24 @@ namespace realclosure {
namespace api {
+ class seq_expr_solver : public expr_solver {
+ ast_manager& m;
+ params_ref const& p;
+ solver_ref s;
+ public:
+ seq_expr_solver(ast_manager& m, params_ref const& p): m(m), p(p) {}
+ lbool check_sat(expr* e) {
+ if (!s) {
+ s = mk_smt_solver(m, p, symbol("ALL"));
+ }
+ s->push();
+ s->assert_expr(e);
+ lbool r = s->check_sat();
+ s->pop(1);
+ return r;
+ }
+ };
+
class context : public tactic_manager {
struct add_plugins { add_plugins(ast_manager & m); };
@@ -62,6 +84,7 @@ namespace api {
datalog::dl_decl_util m_datalog_util;
fpa_util m_fpa_util;
seq_util m_sutil;
+ recfun::util m_recfun;
// Support for old solver API
smt_params m_fparams;
@@ -128,6 +151,7 @@ namespace api {
fpa_util & fpautil() { return m_fpa_util; }
datatype_util& dtutil() { return m_dt_plugin->u(); }
seq_util& sutil() { return m_sutil; }
+ recfun::util& recfun() { return m_recfun; }
family_id get_basic_fid() const { return m_basic_fid; }
family_id get_array_fid() const { return m_array_fid; }
family_id get_arith_fid() const { return m_arith_fid; }
diff --git a/src/api/api_datalog.cpp b/src/api/api_datalog.cpp
index a95f1d8b1..790470275 100644
--- a/src/api/api_datalog.cpp
+++ b/src/api/api_datalog.cpp
@@ -199,23 +199,23 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, uint64_t * out) {
+ bool Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, uint64_t * out) {
Z3_TRY;
if (out) {
*out = 0;
}
if (Z3_get_sort_kind(c, s) != Z3_FINITE_DOMAIN_SORT) {
- return Z3_FALSE;
+ return false;
}
if (!out) {
- return Z3_FALSE;
+ return false;
}
- // must start loggging here, since function uses Z3_get_sort_kind above
+ // must start logging here, since function uses Z3_get_sort_kind above
LOG_Z3_get_finite_domain_sort_size(c, s, out);
RESET_ERROR_CODE();
VERIFY(mk_c(c)->datalog_util().try_get_size(to_sort(s), *out));
- return Z3_TRUE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return true;
+ Z3_CATCH_RETURN(false);
}
Z3_fixedpoint Z3_API Z3_mk_fixedpoint(Z3_context c) {
@@ -379,10 +379,8 @@ extern "C" {
for (unsigned i = 0; i < coll.m_rules.size(); ++i) {
to_fixedpoint_ref(d)->add_rule(coll.m_rules[i].get(), coll.m_names[i]);
}
- ptr_vector::const_iterator it = ctx.begin_assertions();
- ptr_vector::const_iterator end = ctx.end_assertions();
- for (; it != end; ++it) {
- to_fixedpoint_ref(d)->ctx().assert_expr(*it);
+ for (expr * e : ctx.assertions()) {
+ to_fixedpoint_ref(d)->ctx().assert_expr(e);
}
return of_ast_vector(v);
@@ -717,6 +715,4 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
-
-
};
diff --git a/src/api/api_fpa.cpp b/src/api/api_fpa.cpp
index cdc592527..8301ea604 100644
--- a/src/api/api_fpa.cpp
+++ b/src/api/api_fpa.cpp
@@ -232,7 +232,7 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_ast Z3_API Z3_mk_fpa_inf(Z3_context c, Z3_sort s, Z3_bool negative) {
+ Z3_ast Z3_API Z3_mk_fpa_inf(Z3_context c, Z3_sort s, bool negative) {
Z3_TRY;
LOG_Z3_mk_fpa_inf(c, s, negative);
RESET_ERROR_CODE();
@@ -242,14 +242,14 @@ extern "C" {
RETURN_Z3(nullptr);
}
api::context * ctx = mk_c(c);
- expr * a = negative != 0 ? ctx->fpautil().mk_ninf(to_sort(s)) :
- ctx->fpautil().mk_pinf(to_sort(s));
+ expr * a = negative ? ctx->fpautil().mk_ninf(to_sort(s)) :
+ ctx->fpautil().mk_pinf(to_sort(s));
ctx->save_ast_trail(a);
RETURN_Z3(of_expr(a));
Z3_CATCH_RETURN(nullptr);
}
- Z3_ast Z3_API Z3_mk_fpa_zero(Z3_context c, Z3_sort s, Z3_bool negative) {
+ Z3_ast Z3_API Z3_mk_fpa_zero(Z3_context c, Z3_sort s, bool negative) {
Z3_TRY;
LOG_Z3_mk_fpa_inf(c, s, negative);
RESET_ERROR_CODE();
@@ -259,8 +259,8 @@ extern "C" {
RETURN_Z3(nullptr);
}
api::context * ctx = mk_c(c);
- expr * a = negative != 0 ? ctx->fpautil().mk_nzero(to_sort(s)) :
- ctx->fpautil().mk_pzero(to_sort(s));
+ expr * a = negative ? ctx->fpautil().mk_nzero(to_sort(s)) :
+ ctx->fpautil().mk_pzero(to_sort(s));
ctx->save_ast_trail(a);
RETURN_Z3(of_expr(a));
Z3_CATCH_RETURN(nullptr);
@@ -338,7 +338,7 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_ast Z3_API Z3_mk_fpa_numeral_int_uint(Z3_context c, Z3_bool sgn, signed exp, unsigned sig, Z3_sort ty) {
+ Z3_ast Z3_API Z3_mk_fpa_numeral_int_uint(Z3_context c, bool sgn, signed exp, unsigned sig, Z3_sort ty) {
Z3_TRY;
LOG_Z3_mk_fpa_numeral_int64_uint64(c, sgn, exp, sig, ty);
RESET_ERROR_CODE();
@@ -351,14 +351,14 @@ extern "C" {
ctx->fpautil().fm().set(tmp,
ctx->fpautil().get_ebits(to_sort(ty)),
ctx->fpautil().get_sbits(to_sort(ty)),
- sgn != 0, exp, sig);
+ sgn, exp, sig);
expr * a = ctx->fpautil().mk_value(tmp);
ctx->save_ast_trail(a);
RETURN_Z3(of_expr(a));
Z3_CATCH_RETURN(nullptr);
}
- Z3_ast Z3_API Z3_mk_fpa_numeral_int64_uint64(Z3_context c, Z3_bool sgn, int64_t exp, uint64_t sig, Z3_sort ty) {
+ Z3_ast Z3_API Z3_mk_fpa_numeral_int64_uint64(Z3_context c, bool sgn, int64_t exp, uint64_t sig, Z3_sort ty) {
Z3_TRY;
LOG_Z3_mk_fpa_numeral_int64_uint64(c, sgn, exp, sig, ty);
RESET_ERROR_CODE();
@@ -371,7 +371,7 @@ extern "C" {
ctx->fpautil().fm().set(tmp,
ctx->fpautil().get_ebits(to_sort(ty)),
ctx->fpautil().get_sbits(to_sort(ty)),
- sgn != 0, exp, sig);
+ sgn, exp, sig);
expr * a = ctx->fpautil().mk_value(tmp);
ctx->save_ast_trail(a);
RETURN_Z3(of_expr(a));
@@ -905,7 +905,7 @@ extern "C" {
Z3_CATCH_RETURN(0);
}
- Z3_bool Z3_API Z3_fpa_get_numeral_sign(Z3_context c, Z3_ast t, int * sgn) {
+ bool Z3_API Z3_fpa_get_numeral_sign(Z3_context c, Z3_ast t, int * sgn) {
Z3_TRY;
LOG_Z3_fpa_get_numeral_sign(c, t, sgn);
RESET_ERROR_CODE();
@@ -913,7 +913,7 @@ extern "C" {
CHECK_VALID_AST(t, 0);
if (sgn == nullptr) {
SET_ERROR_CODE(Z3_INVALID_ARG, "sign cannot be a nullpointer");
- return 0;
+ return false;
}
ast_manager & m = mk_c(c)->m();
mpf_manager & mpfm = mk_c(c)->fpautil().fm();
@@ -922,13 +922,13 @@ extern "C" {
expr * e = to_expr(t);
if (!is_app(e) || is_app_of(e, fid, OP_FPA_NAN) || !is_fp(c, t)) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid expression argument, expecting a valid fp, not a NaN");
- return 0;
+ return false;
}
scoped_mpf val(mpfm);
bool r = plugin->is_numeral(to_expr(t), val);
if (!r || mpfm.is_nan(val)) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid expression argument, expecting a valid fp, not a NaN");
- return 0;
+ return false;
}
*sgn = mpfm.sgn(val);
return r;
@@ -1035,7 +1035,7 @@ extern "C" {
Z3_CATCH_RETURN("");
}
- Z3_bool Z3_API Z3_fpa_get_numeral_significand_uint64(Z3_context c, Z3_ast t, uint64_t * n) {
+ bool Z3_API Z3_fpa_get_numeral_significand_uint64(Z3_context c, Z3_ast t, uint64_t * n) {
Z3_TRY;
LOG_Z3_fpa_get_numeral_significand_uint64(c, t, n);
RESET_ERROR_CODE();
@@ -1043,7 +1043,7 @@ extern "C" {
CHECK_VALID_AST(t, 0);
if (n == nullptr) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid nullptr argument");
- return 0;
+ return false;
}
ast_manager & m = mk_c(c)->m();
mpf_manager & mpfm = mk_c(c)->fpautil().fm();
@@ -1055,7 +1055,7 @@ extern "C" {
if (!is_app(e) || is_app_of(e, fid, OP_FPA_NAN) || !is_fp(c, t)) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid expression argument, expecting a valid fp, not a NaN");
*n = 0;
- return 0;
+ return false;
}
scoped_mpf val(mpfm);
bool r = plugin->is_numeral(e, val);
@@ -1065,14 +1065,14 @@ extern "C" {
!mpzm.is_uint64(z)) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid expression argument, expecting a valid fp, not a NaN");
*n = 0;
- return 0;
+ return false;
}
*n = mpzm.get_uint64(z);
- return 1;
+ return true;
Z3_CATCH_RETURN(0);
}
- Z3_string Z3_API Z3_fpa_get_numeral_exponent_string(Z3_context c, Z3_ast t, Z3_bool biased) {
+ Z3_string Z3_API Z3_fpa_get_numeral_exponent_string(Z3_context c, Z3_ast t, bool biased) {
Z3_TRY;
LOG_Z3_fpa_get_numeral_exponent_string(c, t, biased);
RESET_ERROR_CODE();
@@ -1113,7 +1113,7 @@ extern "C" {
Z3_CATCH_RETURN("");
}
- Z3_bool Z3_API Z3_fpa_get_numeral_exponent_int64(Z3_context c, Z3_ast t, int64_t * n, Z3_bool biased) {
+ bool Z3_API Z3_fpa_get_numeral_exponent_int64(Z3_context c, Z3_ast t, int64_t * n, bool biased) {
Z3_TRY;
LOG_Z3_fpa_get_numeral_exponent_int64(c, t, n, biased);
RESET_ERROR_CODE();
@@ -1121,7 +1121,7 @@ extern "C" {
CHECK_VALID_AST(t, 0);
if (n == nullptr) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid null argument");
- return 0;
+ return false;
}
ast_manager & m = mk_c(c)->m();
mpf_manager & mpfm = mk_c(c)->fpautil().fm();
@@ -1132,14 +1132,14 @@ extern "C" {
if (!is_app(e) || is_app_of(e, fid, OP_FPA_NAN) || !is_fp(c, t)) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid expression argument, expecting a valid fp, not a NaN");
*n = 0;
- return 0;
+ return false;
}
scoped_mpf val(mpfm);
bool r = plugin->is_numeral(e, val);
if (!r || !(mpfm.is_normal(val) || mpfm.is_denormal(val) || mpfm.is_zero(val) || mpfm.is_inf(val))) {
SET_ERROR_CODE(Z3_INVALID_ARG, "invalid expression argument, expecting a valid fp, not a NaN");
*n = 0;
- return 0;
+ return false;
}
unsigned ebits = val.get().get_ebits();
if (biased) {
@@ -1153,11 +1153,11 @@ extern "C" {
mpfm.is_denormal(val) ? mpfm.mk_min_exp(ebits) :
mpfm.exp(val);
}
- return 1;
+ return true;
Z3_CATCH_RETURN(0);
}
- Z3_ast Z3_API Z3_fpa_get_numeral_exponent_bv(Z3_context c, Z3_ast t, Z3_bool biased) {
+ Z3_ast Z3_API Z3_fpa_get_numeral_exponent_bv(Z3_context c, Z3_ast t, bool biased) {
Z3_TRY;
LOG_Z3_fpa_get_numeral_exponent_bv(c, t, biased);
RESET_ERROR_CODE();
@@ -1232,7 +1232,7 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_nan(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_nan(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_nan(c, t);
RESET_ERROR_CODE();
@@ -1240,13 +1240,13 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_nan(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_inf(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_inf(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_inf(c, t);
RESET_ERROR_CODE();
@@ -1254,13 +1254,13 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_inf(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_zero(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_zero(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_zero(c, t);
RESET_ERROR_CODE();
@@ -1268,13 +1268,13 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_zero(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_normal(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_normal(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_normal(c, t);
RESET_ERROR_CODE();
@@ -1282,13 +1282,13 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_normal(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_subnormal(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_subnormal(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_subnormal(c, t);
RESET_ERROR_CODE();
@@ -1296,13 +1296,13 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_subnormal(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_positive(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_positive(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_positive(c, t);
RESET_ERROR_CODE();
@@ -1310,13 +1310,13 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_positive(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_fpa_is_numeral_negative(Z3_context c, Z3_ast t) {
+ bool Z3_API Z3_fpa_is_numeral_negative(Z3_context c, Z3_ast t) {
Z3_TRY;
LOG_Z3_fpa_is_numeral_negative(c, t);
RESET_ERROR_CODE();
@@ -1324,10 +1324,10 @@ extern "C" {
fpa_util & fu = ctx->fpautil();
if (!is_expr(t) || !fu.is_numeral(to_expr(t))) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return 0;
+ return false;
}
return fu.is_negative(to_expr(t));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
};
diff --git a/src/api/api_goal.cpp b/src/api/api_goal.cpp
index cb3bb7478..c70d241e0 100644
--- a/src/api/api_goal.cpp
+++ b/src/api/api_goal.cpp
@@ -25,7 +25,7 @@ Revision History:
extern "C" {
- Z3_goal Z3_API Z3_mk_goal(Z3_context c, Z3_bool models, Z3_bool unsat_cores, Z3_bool proofs) {
+ Z3_goal Z3_API Z3_mk_goal(Z3_context c, bool models, bool unsat_cores, bool proofs) {
Z3_TRY;
LOG_Z3_mk_goal(c, models, unsat_cores, proofs);
RESET_ERROR_CODE();
@@ -82,12 +82,12 @@ extern "C" {
Z3_CATCH;
}
- Z3_bool Z3_API Z3_goal_inconsistent(Z3_context c, Z3_goal g) {
+ bool Z3_API Z3_goal_inconsistent(Z3_context c, Z3_goal g) {
Z3_TRY;
LOG_Z3_goal_inconsistent(c, g);
RESET_ERROR_CODE();
return to_goal_ref(g)->inconsistent();
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
unsigned Z3_API Z3_goal_depth(Z3_context c, Z3_goal g) {
@@ -136,20 +136,20 @@ extern "C" {
Z3_CATCH_RETURN(0);
}
- Z3_bool Z3_API Z3_goal_is_decided_sat(Z3_context c, Z3_goal g) {
+ bool Z3_API Z3_goal_is_decided_sat(Z3_context c, Z3_goal g) {
Z3_TRY;
LOG_Z3_goal_is_decided_sat(c, g);
RESET_ERROR_CODE();
return to_goal_ref(g)->is_decided_sat();
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_goal_is_decided_unsat(Z3_context c, Z3_goal g) {
+ bool Z3_API Z3_goal_is_decided_unsat(Z3_context c, Z3_goal g) {
Z3_TRY;
LOG_Z3_goal_is_decided_unsat(c, g);
RESET_ERROR_CODE();
return to_goal_ref(g)->is_decided_unsat();
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
Z3_model Z3_API Z3_goal_convert_model(Z3_context c, Z3_goal g, Z3_model m) {
@@ -163,7 +163,7 @@ extern "C" {
if (to_goal_ref(g)->mc())
(*to_goal_ref(g)->mc())(m_ref->m_model);
RETURN_Z3(of_model(m_ref));
- Z3_CATCH_RETURN(0);
+ Z3_CATCH_RETURN(nullptr);
}
Z3_goal Z3_API Z3_goal_translate(Z3_context c, Z3_goal g, Z3_context target) {
diff --git a/src/api/api_log.cpp b/src/api/api_log.cpp
index 1bdbb8735..d338407bf 100644
--- a/src/api/api_log.cpp
+++ b/src/api/api_log.cpp
@@ -19,7 +19,7 @@ Revision History:
#include "api/z3.h"
#include "api/api_log_macros.h"
#include "util/util.h"
-#include "util/version.h"
+#include "util/z3_version.h"
std::ostream * g_z3_log = nullptr;
bool g_z3_log_enabled = false;
@@ -33,8 +33,8 @@ extern "C" {
}
}
- Z3_bool Z3_API Z3_open_log(Z3_string filename) {
- Z3_bool res = Z3_TRUE;
+ bool Z3_API Z3_open_log(Z3_string filename) {
+ bool res = true;
#ifdef Z3_LOG_SYNC
#pragma omp critical (z3_log)
@@ -46,7 +46,7 @@ extern "C" {
if (g_z3_log->bad() || g_z3_log->fail()) {
dealloc(g_z3_log);
g_z3_log = nullptr;
- res = Z3_FALSE;
+ res = false;
}
else {
*g_z3_log << "V \"" << Z3_MAJOR_VERSION << "." << Z3_MINOR_VERSION << "." << Z3_BUILD_NUMBER << "." << Z3_REVISION_NUMBER << " " << __DATE__ << "\"\n";
diff --git a/src/api/api_model.cpp b/src/api/api_model.cpp
index 939cccdca..0937e668e 100644
--- a/src/api/api_model.cpp
+++ b/src/api/api_model.cpp
@@ -75,16 +75,12 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_model_has_interp(Z3_context c, Z3_model m, Z3_func_decl a) {
+ bool Z3_API Z3_model_has_interp(Z3_context c, Z3_model m, Z3_func_decl a) {
Z3_TRY;
LOG_Z3_model_has_interp(c, m, a);
CHECK_NON_NULL(m, 0);
- if (to_model_ref(m)->has_interpretation(to_func_decl(a))) {
- return Z3_TRUE;
- } else {
- return Z3_FALSE;
- }
- Z3_CATCH_RETURN(Z3_FALSE);
+ return to_model_ref(m)->has_interpretation(to_func_decl(a));
+ Z3_CATCH_RETURN(false);
}
Z3_func_interp Z3_API Z3_model_get_func_interp(Z3_context c, Z3_model m, Z3_func_decl f) {
@@ -157,20 +153,23 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, Z3_bool model_completion, Z3_ast * v) {
+ bool Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, bool model_completion, Z3_ast * v) {
Z3_TRY;
LOG_Z3_model_eval(c, m, t, model_completion, v);
if (v) *v = nullptr;
RESET_ERROR_CODE();
- CHECK_NON_NULL(m, Z3_FALSE);
- CHECK_IS_EXPR(t, Z3_FALSE);
+ CHECK_NON_NULL(m, false);
+ CHECK_IS_EXPR(t, false);
model * _m = to_model_ref(m);
- expr_ref result(mk_c(c)->m());
- model::scoped_model_completion _scm(*_m, model_completion == Z3_TRUE);
+ params_ref p;
+ ast_manager& mgr = mk_c(c)->m();
+ _m->set_solver(alloc(api::seq_expr_solver, mgr, p));
+ expr_ref result(mgr);
+ model::scoped_model_completion _scm(*_m, model_completion);
result = (*_m)(to_expr(t));
mk_c(c)->save_ast_trail(result.get());
*v = of_ast(result.get());
- RETURN_Z3_model_eval Z3_TRUE;
+ RETURN_Z3_model_eval true;
Z3_CATCH_RETURN(0);
}
@@ -225,12 +224,12 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_as_array(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_as_array(Z3_context c, Z3_ast a) {
Z3_TRY;
LOG_Z3_is_as_array(c, a);
RESET_ERROR_CODE();
return a && is_expr(to_ast(a)) && is_app_of(to_expr(a), mk_c(c)->get_array_fid(), OP_AS_ARRAY);
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
Z3_func_decl Z3_API Z3_get_as_array_func_decl(Z3_context c, Z3_ast a) {
@@ -472,7 +471,7 @@ extern "C" {
model_smt2_pp(buffer, mk_c(c)->m(), *(to_model_ref(m)), 0);
// Hack for removing the trailing '\n'
result = buffer.str();
- if (result.size() != 0)
+ if (!result.empty())
result.resize(result.size()-1);
}
else {
diff --git a/src/api/api_numeral.cpp b/src/api/api_numeral.cpp
index 2891e8cc4..90d5998f3 100644
--- a/src/api/api_numeral.cpp
+++ b/src/api/api_numeral.cpp
@@ -142,11 +142,11 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_numeral_ast(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_numeral_ast(Z3_context c, Z3_ast a) {
Z3_TRY;
LOG_Z3_is_numeral_ast(c, a);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(a, Z3_FALSE);
+ CHECK_IS_EXPR(a, false);
expr* e = to_expr(a);
return
mk_c(c)->autil().is_numeral(e) ||
@@ -154,29 +154,29 @@ extern "C" {
mk_c(c)->fpautil().is_numeral(e) ||
mk_c(c)->fpautil().is_rm_numeral(e) ||
mk_c(c)->datalog_util().is_numeral_ext(e);
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_get_numeral_rational(Z3_context c, Z3_ast a, rational& r) {
+ bool Z3_API Z3_get_numeral_rational(Z3_context c, Z3_ast a, rational& r) {
Z3_TRY;
// This function is not part of the public API
RESET_ERROR_CODE();
- CHECK_IS_EXPR(a, Z3_FALSE);
+ CHECK_IS_EXPR(a, false);
expr* e = to_expr(a);
if (mk_c(c)->autil().is_numeral(e, r)) {
- return Z3_TRUE;
+ return true;
}
unsigned bv_size;
if (mk_c(c)->bvutil().is_numeral(e, r, bv_size)) {
- return Z3_TRUE;
+ return true;
}
uint64_t v;
if (mk_c(c)->datalog_util().is_numeral(e, v)) {
r = rational(v, rational::ui64());
- return Z3_TRUE;
+ return true;
}
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
@@ -187,8 +187,8 @@ extern "C" {
RESET_ERROR_CODE();
CHECK_IS_EXPR(a, "");
rational r;
- Z3_bool ok = Z3_get_numeral_rational(c, a, r);
- if (ok == Z3_TRUE) {
+ bool ok = Z3_get_numeral_rational(c, a, r);
+ if (ok) {
return mk_c(c)->mk_external_string(r.to_string());
}
else {
@@ -198,19 +198,19 @@ extern "C" {
mpf_rounding_mode rm;
if (mk_c(c)->fpautil().is_rm_numeral(to_expr(a), rm)) {
switch (rm) {
- case OP_FPA_RM_NEAREST_TIES_TO_EVEN:
+ case MPF_ROUND_NEAREST_TEVEN:
return mk_c(c)->mk_external_string("roundNearestTiesToEven");
break;
- case OP_FPA_RM_NEAREST_TIES_TO_AWAY:
+ case MPF_ROUND_NEAREST_TAWAY:
return mk_c(c)->mk_external_string("roundNearestTiesToAway");
break;
- case OP_FPA_RM_TOWARD_POSITIVE:
+ case MPF_ROUND_TOWARD_POSITIVE:
return mk_c(c)->mk_external_string("roundTowardPositive");
break;
- case OP_FPA_RM_TOWARD_NEGATIVE:
+ case MPF_ROUND_TOWARD_NEGATIVE:
return mk_c(c)->mk_external_string("roundTowardNegative");
break;
- case OP_FPA_RM_TOWARD_ZERO:
+ case MPF_ROUND_TOWARD_ZERO:
default:
return mk_c(c)->mk_external_string("roundTowardZero");
break;
@@ -227,6 +227,11 @@ extern "C" {
Z3_CATCH_RETURN("");
}
+ double Z3_API Z3_get_numeral_double(Z3_context c, Z3_ast a) {
+ Z3_string s = Z3_get_numeral_decimal_string(c, a, 12);
+ return std::stod(std::string(s));
+ }
+
Z3_string Z3_API Z3_get_numeral_decimal_string(Z3_context c, Z3_ast a, unsigned precision) {
Z3_TRY;
LOG_Z3_get_numeral_decimal_string(c, a, precision);
@@ -247,8 +252,8 @@ extern "C" {
am.display_decimal(buffer, n, precision);
return mk_c(c)->mk_external_string(buffer.str());
}
- Z3_bool ok = Z3_get_numeral_rational(c, a, r);
- if (ok == Z3_TRUE) {
+ bool ok = Z3_get_numeral_rational(c, a, r);
+ if (ok) {
return mk_c(c)->mk_external_string(r.to_string());
}
else {
@@ -258,124 +263,124 @@ extern "C" {
Z3_CATCH_RETURN("");
}
- Z3_bool Z3_API Z3_get_numeral_small(Z3_context c, Z3_ast a, int64_t* num, int64_t* den) {
+ bool Z3_API Z3_get_numeral_small(Z3_context c, Z3_ast a, int64_t* num, int64_t* den) {
Z3_TRY;
// This function invokes Z3_get_numeral_rational, but it is still ok to add LOG command here because it does not return a Z3 object.
LOG_Z3_get_numeral_small(c, a, num, den);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(a, Z3_FALSE);
+ CHECK_IS_EXPR(a, false);
rational r;
- Z3_bool ok = Z3_get_numeral_rational(c, a, r);
- if (ok == Z3_TRUE) {
+ bool ok = Z3_get_numeral_rational(c, a, r);
+ if (ok) {
rational n = numerator(r);
rational d = denominator(r);
if (n.is_int64() && d.is_int64()) {
*num = n.get_int64();
*den = d.get_int64();
- return Z3_TRUE;
+ return true;
}
else {
- return Z3_FALSE;
+ return false;
}
}
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_get_numeral_int(Z3_context c, Z3_ast v, int* i) {
+ bool Z3_API Z3_get_numeral_int(Z3_context c, Z3_ast v, int* i) {
Z3_TRY;
// This function invokes Z3_get_numeral_int64, but it is still ok to add LOG command here because it does not return a Z3 object.
LOG_Z3_get_numeral_int(c, v, i);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(v, Z3_FALSE);
+ CHECK_IS_EXPR(v, false);
if (!i) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return Z3_FALSE;
+ return false;
}
int64_t l;
if (Z3_get_numeral_int64(c, v, &l) && l >= INT_MIN && l <= INT_MAX) {
*i = static_cast(l);
- return Z3_TRUE;
+ return true;
}
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_get_numeral_uint(Z3_context c, Z3_ast v, unsigned* u) {
+ bool Z3_API Z3_get_numeral_uint(Z3_context c, Z3_ast v, unsigned* u) {
Z3_TRY;
// This function invokes Z3_get_numeral_uint64, but it is still ok to add LOG command here because it does not return a Z3 object.
LOG_Z3_get_numeral_uint(c, v, u);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(v, Z3_FALSE);
+ CHECK_IS_EXPR(v, false);
if (!u) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return Z3_FALSE;
+ return false;
}
uint64_t l;
if (Z3_get_numeral_uint64(c, v, &l) && (l <= 0xFFFFFFFF)) {
*u = static_cast(l);
- return Z3_TRUE;
+ return true;
}
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, uint64_t* u) {
+ bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, uint64_t* u) {
Z3_TRY;
// This function invokes Z3_get_numeral_rational, but it is still ok to add LOG command here because it does not return a Z3 object.
LOG_Z3_get_numeral_uint64(c, v, u);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(v, Z3_FALSE);
+ CHECK_IS_EXPR(v, false);
if (!u) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return Z3_FALSE;
+ return false;
}
rational r;
- Z3_bool ok = Z3_get_numeral_rational(c, v, r);
+ bool ok = Z3_get_numeral_rational(c, v, r);
SASSERT(u);
- if (ok == Z3_TRUE && r.is_uint64()) {
+ if (ok && r.is_uint64()) {
*u = r.get_uint64();
return ok;
}
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_get_numeral_int64(Z3_context c, Z3_ast v, int64_t* i) {
+ bool Z3_API Z3_get_numeral_int64(Z3_context c, Z3_ast v, int64_t* i) {
Z3_TRY;
// This function invokes Z3_get_numeral_rational, but it is still ok to add LOG command here because it does not return a Z3 object.
LOG_Z3_get_numeral_int64(c, v, i);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(v, Z3_FALSE);
+ CHECK_IS_EXPR(v, false);
if (!i) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return Z3_FALSE;
+ return false;
}
rational r;
- Z3_bool ok = Z3_get_numeral_rational(c, v, r);
- if (ok == Z3_TRUE && r.is_int64()) {
+ bool ok = Z3_get_numeral_rational(c, v, r);
+ if (ok && r.is_int64()) {
*i = r.get_int64();
return ok;
}
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_get_numeral_rational_int64(Z3_context c, Z3_ast v, int64_t* num, int64_t* den) {
+ bool Z3_API Z3_get_numeral_rational_int64(Z3_context c, Z3_ast v, int64_t* num, int64_t* den) {
Z3_TRY;
// This function invokes Z3_get_numeral_rational, but it is still ok to add LOG command here because it does not return a Z3 object.
LOG_Z3_get_numeral_rational_int64(c, v, num, den);
RESET_ERROR_CODE();
- CHECK_IS_EXPR(v, Z3_FALSE);
+ CHECK_IS_EXPR(v, false);
if (!num || !den) {
SET_ERROR_CODE(Z3_INVALID_ARG, nullptr);
- return Z3_FALSE;
+ return false;
}
rational r;
- Z3_bool ok = Z3_get_numeral_rational(c, v, r);
- if (ok != Z3_TRUE) {
+ bool ok = Z3_get_numeral_rational(c, v, r);
+ if (ok != true) {
return ok;
}
rational n = numerator(r);
@@ -385,11 +390,11 @@ extern "C" {
*den = d.get_int64();
return ok;
}
- return Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return false;
+ Z3_CATCH_RETURN(false);
}
- Z3_ast Z3_API Z3_mk_bv_numeral(Z3_context c, unsigned sz, Z3_bool const* bits) {
+ Z3_ast Z3_API Z3_mk_bv_numeral(Z3_context c, unsigned sz, bool const* bits) {
Z3_TRY;
LOG_Z3_mk_bv_numeral(c, sz, bits);
RESET_ERROR_CODE();
diff --git a/src/api/api_opt.cpp b/src/api/api_opt.cpp
index 71f92eeba..0b56b788d 100644
--- a/src/api/api_opt.cpp
+++ b/src/api/api_opt.cpp
@@ -124,10 +124,16 @@ extern "C" {
}
- Z3_lbool Z3_API Z3_optimize_check(Z3_context c, Z3_optimize o) {
+ Z3_lbool Z3_API Z3_optimize_check(Z3_context c, Z3_optimize o, unsigned num_assumptions, Z3_ast const assumptions[]) {
Z3_TRY;
- LOG_Z3_optimize_check(c, o);
+ LOG_Z3_optimize_check(c, o, num_assumptions, assumptions);
RESET_ERROR_CODE();
+ for (unsigned i = 0; i < num_assumptions; i++) {
+ if (!is_expr(to_ast(assumptions[i]))) {
+ SET_ERROR_CODE(Z3_INVALID_ARG, "assumption is not an expression");
+ return Z3_L_UNDEF;
+ }
+ }
lbool r = l_undef;
cancel_eh eh(mk_c(c)->m().limit());
unsigned timeout = to_optimize_ptr(o)->get_params().get_uint("timeout", mk_c(c)->get_timeout());
@@ -137,7 +143,9 @@ extern "C" {
scoped_timer timer(timeout, &eh);
scoped_rlimit _rlimit(mk_c(c)->m().limit(), rlimit);
try {
- r = to_optimize_ptr(o)->optimize();
+ expr_ref_vector asms(mk_c(c)->m());
+ asms.append(num_assumptions, to_exprs(assumptions));
+ r = to_optimize_ptr(o)->optimize(asms);
}
catch (z3_exception& ex) {
if (!mk_c(c)->m().canceled()) {
@@ -157,6 +165,22 @@ extern "C" {
Z3_CATCH_RETURN(Z3_L_UNDEF);
}
+ Z3_ast_vector Z3_API Z3_optimize_get_unsat_core(Z3_context c, Z3_optimize o) {
+ Z3_TRY;
+ LOG_Z3_optimize_get_unsat_core(c, o);
+ RESET_ERROR_CODE();
+ expr_ref_vector core(mk_c(c)->m());
+ to_optimize_ptr(o)->get_unsat_core(core);
+ Z3_ast_vector_ref * v = alloc(Z3_ast_vector_ref, *mk_c(c), mk_c(c)->m());
+ mk_c(c)->save_object(v);
+ for (expr* e : core) {
+ v->m_ast_vector.push_back(e);
+ }
+ RETURN_Z3(of_ast_vector(v));
+ Z3_CATCH_RETURN(nullptr);
+ }
+
+
Z3_string Z3_API Z3_optimize_get_reason_unknown(Z3_context c, Z3_optimize o) {
Z3_TRY;
LOG_Z3_optimize_to_string(c, o);
@@ -330,10 +354,8 @@ extern "C" {
return;
}
- ptr_vector::const_iterator it = ctx->begin_assertions();
- ptr_vector::const_iterator end = ctx->end_assertions();
- for (; it != end; ++it) {
- to_optimize_ptr(opt)->add_hard_constraint(*it);
+ for (expr * e : ctx->assertions()) {
+ to_optimize_ptr(opt)->add_hard_constraint(e);
}
}
diff --git a/src/api/api_params.cpp b/src/api/api_params.cpp
index 9d9f5157c..b2fa2e815 100644
--- a/src/api/api_params.cpp
+++ b/src/api/api_params.cpp
@@ -62,11 +62,11 @@ extern "C" {
/**
\brief Add a Boolean parameter \c k with value \c v to the parameter set \c p.
*/
- void Z3_API Z3_params_set_bool(Z3_context c, Z3_params p, Z3_symbol k, Z3_bool v) {
+ void Z3_API Z3_params_set_bool(Z3_context c, Z3_params p, Z3_symbol k, bool v) {
Z3_TRY;
LOG_Z3_params_set_bool(c, p, k, v);
RESET_ERROR_CODE();
- to_params(p)->m_params.set_bool(norm_param_name(to_symbol(k)).c_str(), v != 0);
+ to_params(p)->m_params.set_bool(norm_param_name(to_symbol(k)).c_str(), v);
Z3_CATCH;
}
diff --git a/src/api/api_parsers.cpp b/src/api/api_parsers.cpp
index b88f273f9..32c133d2b 100644
--- a/src/api/api_parsers.cpp
+++ b/src/api/api_parsers.cpp
@@ -71,10 +71,8 @@ extern "C" {
SET_ERROR_CODE(Z3_PARSER_ERROR, errstrm.str().c_str());
return of_ast_vector(v);
}
- ptr_vector::const_iterator it = ctx->begin_assertions();
- ptr_vector::const_iterator end = ctx->end_assertions();
- for (; it != end; ++it) {
- v->m_ast_vector.push_back(*it);
+ for (expr * e : ctx->assertions()) {
+ v->m_ast_vector.push_back(e);
}
return of_ast_vector(v);
Z3_CATCH_RETURN(nullptr);
diff --git a/src/api/api_qe.cpp b/src/api/api_qe.cpp
index 10ba9faa0..0b0c694d7 100644
--- a/src/api/api_qe.cpp
+++ b/src/api/api_qe.cpp
@@ -1,5 +1,5 @@
/*++
-Copyright (c) Microsoft Corporation, Arive Gurfinkel 2017
+Copyright (c) Microsoft Corporation, Arie Gurfinkel 2017
Module Name:
diff --git a/src/api/api_quant.cpp b/src/api/api_quant.cpp
index 6d6d19d56..546f4174a 100644
--- a/src/api/api_quant.cpp
+++ b/src/api/api_quant.cpp
@@ -26,7 +26,7 @@ extern "C" {
Z3_ast Z3_API Z3_mk_quantifier(
Z3_context c,
- Z3_bool is_forall,
+ bool is_forall,
unsigned weight,
unsigned num_patterns, Z3_pattern const patterns[],
unsigned num_decls, Z3_sort const sorts[],
@@ -50,7 +50,7 @@ extern "C" {
Z3_ast mk_quantifier_ex_core(
Z3_context c,
- Z3_bool is_forall,
+ bool is_forall,
unsigned weight,
Z3_symbol quantifier_id,
Z3_symbol skolem_id,
@@ -109,7 +109,7 @@ extern "C" {
Z3_ast Z3_API Z3_mk_quantifier_ex(
Z3_context c,
- Z3_bool is_forall,
+ bool is_forall,
unsigned weight,
Z3_symbol quantifier_id,
Z3_symbol skolem_id,
@@ -132,7 +132,7 @@ extern "C" {
unsigned num_decls, Z3_sort const types[],
Z3_symbol const decl_names[],
Z3_ast body) {
- return Z3_mk_quantifier(c, 1, weight, num_patterns, patterns, num_decls, types, decl_names, body);
+ return Z3_mk_quantifier(c, true, weight, num_patterns, patterns, num_decls, types, decl_names, body);
}
Z3_ast Z3_API Z3_mk_exists(Z3_context c,
@@ -141,7 +141,7 @@ extern "C" {
unsigned num_decls, Z3_sort const types[],
Z3_symbol const decl_names[],
Z3_ast body) {
- return Z3_mk_quantifier(c, 0, weight, num_patterns, patterns, num_decls, types, decl_names, body);
+ return Z3_mk_quantifier(c, false, weight, num_patterns, patterns, num_decls, types, decl_names, body);
}
Z3_ast Z3_API Z3_mk_lambda(Z3_context c,
@@ -155,7 +155,7 @@ extern "C" {
expr_ref result(mk_c(c)->m());
if (num_decls == 0) {
SET_ERROR_CODE(Z3_INVALID_USAGE, nullptr);
- RETURN_Z3(0);
+ RETURN_Z3(nullptr);
}
sort* const* ts = reinterpret_cast(types);
@@ -166,7 +166,7 @@ extern "C" {
result = mk_c(c)->m().mk_lambda(names.size(), ts, names.c_ptr(), to_expr(body));
mk_c(c)->save_ast_trail(result.get());
return of_ast(result.get());
- Z3_CATCH_RETURN(0);
+ Z3_CATCH_RETURN(nullptr);
}
Z3_ast Z3_API Z3_mk_lambda_const(Z3_context c,
@@ -178,7 +178,7 @@ extern "C" {
RESET_ERROR_CODE();
if (num_decls == 0) {
SET_ERROR_CODE(Z3_INVALID_USAGE, nullptr);
- RETURN_Z3(0);
+ RETURN_Z3(nullptr);
}
svector _names;
@@ -196,12 +196,12 @@ extern "C" {
result = mk_c(c)->m().mk_lambda(_vars.size(), _vars.c_ptr(), _names.c_ptr(), result);
mk_c(c)->save_ast_trail(result.get());
return of_ast(result.get());
- Z3_CATCH_RETURN(0);
+ Z3_CATCH_RETURN(nullptr);
}
Z3_ast Z3_API Z3_mk_quantifier_const_ex(Z3_context c,
- Z3_bool is_forall,
+ bool is_forall,
unsigned weight,
Z3_symbol quantifier_id,
Z3_symbol skolem_id,
@@ -283,7 +283,7 @@ extern "C" {
}
Z3_ast Z3_API Z3_mk_quantifier_const(Z3_context c,
- Z3_bool is_forall,
+ bool is_forall,
unsigned weight,
unsigned num_bound,
Z3_app const bound[],
@@ -343,28 +343,28 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a) {
Z3_TRY;
LOG_Z3_is_quantifier_forall(c, a);
RESET_ERROR_CODE();
- return ::is_forall(to_ast(a)) ? Z3_TRUE : Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return ::is_forall(to_ast(a));
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_is_quantifier_exists(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_quantifier_exists(Z3_context c, Z3_ast a) {
Z3_TRY;
LOG_Z3_is_quantifier_exists(c, a);
RESET_ERROR_CODE();
- return ::is_exists(to_ast(a)) ? Z3_TRUE : Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return ::is_exists(to_ast(a));
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_is_lambda(Z3_context c, Z3_ast a) {
+ bool Z3_API Z3_is_lambda(Z3_context c, Z3_ast a) {
Z3_TRY;
LOG_Z3_is_lambda(c, a);
RESET_ERROR_CODE();
- return ::is_lambda(to_ast(a)) ? Z3_TRUE : Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return ::is_lambda(to_ast(a));
+ Z3_CATCH_RETURN(false);
}
diff --git a/src/api/api_rcf.cpp b/src/api/api_rcf.cpp
index d92ff155b..840f6d3a8 100644
--- a/src/api/api_rcf.cpp
+++ b/src/api/api_rcf.cpp
@@ -214,67 +214,67 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_rcf_lt(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
+ bool Z3_API Z3_rcf_lt(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
Z3_TRY;
LOG_Z3_rcf_lt(c, a, b);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
return rcfm(c).lt(to_rcnumeral(a), to_rcnumeral(b));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_rcf_gt(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
+ bool Z3_API Z3_rcf_gt(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
Z3_TRY;
LOG_Z3_rcf_gt(c, a, b);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
return rcfm(c).gt(to_rcnumeral(a), to_rcnumeral(b));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_rcf_le(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
+ bool Z3_API Z3_rcf_le(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
Z3_TRY;
LOG_Z3_rcf_le(c, a, b);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
return rcfm(c).le(to_rcnumeral(a), to_rcnumeral(b));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_rcf_ge(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
+ bool Z3_API Z3_rcf_ge(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
Z3_TRY;
LOG_Z3_rcf_ge(c, a, b);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
return rcfm(c).ge(to_rcnumeral(a), to_rcnumeral(b));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_rcf_eq(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
+ bool Z3_API Z3_rcf_eq(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
Z3_TRY;
LOG_Z3_rcf_eq(c, a, b);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
return rcfm(c).eq(to_rcnumeral(a), to_rcnumeral(b));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_rcf_neq(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
+ bool Z3_API Z3_rcf_neq(Z3_context c, Z3_rcf_num a, Z3_rcf_num b) {
Z3_TRY;
LOG_Z3_rcf_neq(c, a, b);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
return rcfm(c).neq(to_rcnumeral(a), to_rcnumeral(b));
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
- Z3_string Z3_API Z3_rcf_num_to_string(Z3_context c, Z3_rcf_num a, Z3_bool compact, Z3_bool html) {
+ Z3_string Z3_API Z3_rcf_num_to_string(Z3_context c, Z3_rcf_num a, bool compact, bool html) {
Z3_TRY;
LOG_Z3_rcf_num_to_string(c, a, compact, html);
RESET_ERROR_CODE();
reset_rcf_cancel(c);
std::ostringstream buffer;
- rcfm(c).display(buffer, to_rcnumeral(a), compact != 0, html != 0);
+ rcfm(c).display(buffer, to_rcnumeral(a), compact, html);
return mk_c(c)->mk_external_string(buffer.str());
Z3_CATCH_RETURN("");
}
diff --git a/src/api/api_seq.cpp b/src/api/api_seq.cpp
index 42979d1ed..19e298ee8 100644
--- a/src/api/api_seq.cpp
+++ b/src/api/api_seq.cpp
@@ -65,40 +65,36 @@ extern "C" {
Z3_CATCH_RETURN(nullptr);
}
- Z3_bool Z3_API Z3_is_seq_sort(Z3_context c, Z3_sort s) {
+ bool Z3_API Z3_is_seq_sort(Z3_context c, Z3_sort s) {
Z3_TRY;
LOG_Z3_is_seq_sort(c, s);
RESET_ERROR_CODE();
- bool result = mk_c(c)->sutil().is_seq(to_sort(s));
- return result?Z3_TRUE:Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return mk_c(c)->sutil().is_seq(to_sort(s));
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_is_re_sort(Z3_context c, Z3_sort s) {
+ bool Z3_API Z3_is_re_sort(Z3_context c, Z3_sort s) {
Z3_TRY;
LOG_Z3_is_re_sort(c, s);
RESET_ERROR_CODE();
- bool result = mk_c(c)->sutil().is_re(to_sort(s));
- return result?Z3_TRUE:Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return mk_c(c)->sutil().is_re(to_sort(s));
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_is_string_sort(Z3_context c, Z3_sort s) {
+ bool Z3_API Z3_is_string_sort(Z3_context c, Z3_sort s) {
Z3_TRY;
LOG_Z3_is_string_sort(c, s);
RESET_ERROR_CODE();
- bool result = mk_c(c)->sutil().is_string(to_sort(s));
- return result?Z3_TRUE:Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return mk_c(c)->sutil().is_string(to_sort(s));
+ Z3_CATCH_RETURN(false);
}
- Z3_bool Z3_API Z3_is_string(Z3_context c, Z3_ast s) {
+ bool Z3_API Z3_is_string(Z3_context c, Z3_ast s) {
Z3_TRY;
LOG_Z3_is_string(c, s);
RESET_ERROR_CODE();
- bool result = mk_c(c)->sutil().str.is_string(to_expr(s));
- return result?Z3_TRUE:Z3_FALSE;
- Z3_CATCH_RETURN(Z3_FALSE);
+ return mk_c(c)->sutil().str.is_string(to_expr(s));
+ Z3_CATCH_RETURN(false);
}
Z3_string Z3_API Z3_get_string(Z3_context c, Z3_ast s) {
@@ -110,8 +106,8 @@ extern "C" {
SET_ERROR_CODE(Z3_INVALID_ARG, "expression is not a string literal");
return "";
}
- std::string result = str.encode();
- return mk_c(c)->mk_external_string(result);
+ std::string s = str.encode();
+ return mk_c(c)->mk_external_string(s);
Z3_CATCH_RETURN("");
}
diff --git a/src/api/api_solver.cpp b/src/api/api_solver.cpp
index 9ad51aaf4..a5ad7b525 100644
--- a/src/api/api_solver.cpp
+++ b/src/api/api_solver.cpp
@@ -157,10 +157,8 @@ extern "C" {
bool initialized = to_solver(s)->m_solver.get() != nullptr;
if (!initialized)
init_solver(c, s);
- ptr_vector::const_iterator it = ctx->begin_assertions();
- ptr_vector::const_iterator end = ctx->end_assertions();
- for (; it != end; ++it) {
- to_solver_ref(s)->assert_expr(*it);
+ for (expr * e : ctx->assertions()) {
+ to_solver_ref(s)->assert_expr(e);
}
to_solver_ref(s)->set_model_converter(ctx->get_model_converter());
}
@@ -179,16 +177,24 @@ extern "C" {
LOG_Z3_solver_from_file(c, s, file_name);
char const* ext = get_extension(file_name);
std::ifstream is(file_name);
+ init_solver(c, s);
if (!is) {
SET_ERROR_CODE(Z3_FILE_ACCESS_ERROR, nullptr);
}
else if (ext && std::string("dimacs") == ext) {
ast_manager& m = to_solver_ref(s)->get_manager();
+ std::stringstream err;
sat::solver solver(to_solver_ref(s)->get_params(), m.limit());
- parse_dimacs(is, solver);
+ if (!parse_dimacs(is, err, solver)) {
+ SET_ERROR_CODE(Z3_PARSER_ERROR, err.str().c_str());
+ return;
+ }
sat2goal s2g;
ref mc;
atom2bool_var a2b(m);
+ for (unsigned v = 0; v < solver.num_vars(); ++v) {
+ a2b.insert(m.mk_const(symbol(v), m.mk_bool_sort()), v);
+ }
goal g(m);
s2g(solver, a2b, to_solver_ref(s)->get_params(), g, mc);
for (unsigned i = 0; i < g.size(); ++i) {
@@ -368,7 +374,22 @@ extern "C" {
v->m_ast_vector.push_back(f);
}
RETURN_Z3(of_ast_vector(v));
- Z3_CATCH_RETURN(0);
+ Z3_CATCH_RETURN(nullptr);
+ }
+
+ Z3_ast_vector Z3_API Z3_solver_get_non_units(Z3_context c, Z3_solver s) {
+ Z3_TRY;
+ LOG_Z3_solver_get_non_units(c, s);
+ RESET_ERROR_CODE();
+ init_solver(c, s);
+ Z3_ast_vector_ref * v = alloc(Z3_ast_vector_ref, *mk_c(c), mk_c(c)->m());
+ mk_c(c)->save_object(v);
+ expr_ref_vector fmls = to_solver_ref(s)->get_non_units(mk_c(c)->m());
+ for (expr* f : fmls) {
+ v->m_ast_vector.push_back(f);
+ }
+ RETURN_Z3(of_ast_vector(v));
+ Z3_CATCH_RETURN(nullptr);
}
static Z3_lbool _solver_check(Z3_context c, Z3_solver s, unsigned num_assumptions, Z3_ast const assumptions[]) {
@@ -615,7 +636,7 @@ extern "C" {
}
catch (z3_exception & ex) {
mk_c(c)->handle_exception(ex);
- return 0;
+ return nullptr;
}
}
Z3_ast_vector_ref * v = alloc(Z3_ast_vector_ref, *mk_c(c), mk_c(c)->m());
@@ -628,7 +649,7 @@ extern "C" {
to_ast_vector_ref(vs).push_back(a);
}
RETURN_Z3(of_ast_vector(v));
- Z3_CATCH_RETURN(0);
+ Z3_CATCH_RETURN(nullptr);
}
diff --git a/src/api/api_stats.cpp b/src/api/api_stats.cpp
index 2014d57b8..3ff87039f 100644
--- a/src/api/api_stats.cpp
+++ b/src/api/api_stats.cpp
@@ -74,28 +74,28 @@ extern "C" {
Z3_CATCH_RETURN("");
}
- Z3_bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx) {
+ bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx) {
Z3_TRY;
LOG_Z3_stats_is_uint(c, s, idx);
RESET_ERROR_CODE();
if (idx >= to_stats_ref(s).size()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
- return Z3_FALSE;
+ return false;
}
return to_stats_ref(s).is_uint(idx);
Z3_CATCH_RETURN(0);
}
- Z3_bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx) {
+ bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx) {
Z3_TRY;
LOG_Z3_stats_is_double(c, s, idx);
RESET_ERROR_CODE();
if (idx >= to_stats_ref(s).size()) {
SET_ERROR_CODE(Z3_IOB, nullptr);
- return Z3_FALSE;
+ return false;
}
return !to_stats_ref(s).is_uint(idx);
- Z3_CATCH_RETURN(Z3_FALSE);
+ Z3_CATCH_RETURN(false);
}
unsigned Z3_API Z3_stats_get_uint_value(Z3_context c, Z3_stats s, unsigned idx) {
diff --git a/src/api/c++/z3++.h b/src/api/c++/z3++.h
index e1f263e17..7d45c9707 100644
--- a/src/api/c++/z3++.h
+++ b/src/api/c++/z3++.h
@@ -28,6 +28,9 @@ Notes:
#include
#include
+#undef min
+#undef max
+
/**
\defgroup cppapi C++ API
@@ -127,6 +130,14 @@ namespace z3 {
unsat, sat, unknown
};
+ enum rounding_mode {
+ RNA,
+ RNE,
+ RTP,
+ RTN,
+ RTZ
+ };
+
inline check_result to_check_result(Z3_lbool l) {
if (l == Z3_L_TRUE) return sat;
else if (l == Z3_L_FALSE) return unsat;
@@ -137,12 +148,17 @@ namespace z3 {
/**
\brief A Context manages all other Z3 objects, global configuration options, etc.
*/
+
+
class context {
+ private:
bool m_enable_exceptions;
+ rounding_mode m_rounding_mode;
Z3_context m_ctx;
void init(config & c) {
m_ctx = Z3_mk_context_rc(c);
m_enable_exceptions = true;
+ m_rounding_mode = RNA;
Z3_set_error_handler(m_ctx, 0);
Z3_set_ast_print_mode(m_ctx, Z3_PRINT_SMTLIB2_COMPLIANT);
}
@@ -171,7 +187,7 @@ namespace z3 {
}
/**
- \brief The C++ API uses by defaults exceptions on errors.
+ \brief The C++ API uses by defaults exceptions on errors.
For applications that don't work well with exceptions (there should be only few)
you have the ability to turn off exceptions. The tradeoffs are that applications
have to be very careful about using check_error() after calls that may result in an
@@ -247,6 +263,26 @@ namespace z3 {
*/
sort array_sort(sort d, sort r);
sort array_sort(sort_vector const& d, sort r);
+ /**
+ \brief Return a floating point sort.
+ \c ebits is a number of exponent bits,
+ \c sbits is a number of significand bits,
+ \pre where ebits must be larger than 1 and sbits must be larger than 2.
+ */
+ sort fpa_sort(unsigned ebits, unsigned sbits);
+ /**
+ \brief Return a FloatingPoint sort with given precision bitwidth (16, 32, 64 or 128).
+ */
+ template
+ sort fpa_sort();
+ /**
+ \brief Return a RoundingMode sort.
+ */
+ sort fpa_rounding_mode();
+ /**
+ \brief Sets RoundingMode of FloatingPoints.
+ */
+ void set_rounding_mode(rounding_mode rm);
/**
\brief Return an enumeration sort: enum_names[0], ..., enum_names[n-1].
\c cs and \c ts are output parameters. The method stores in \c cs the constants corresponding to the enumerated elements,
@@ -258,7 +294,7 @@ namespace z3 {
\brief Return a tuple constructor.
\c name is the name of the returned constructor,
\c n are the number of arguments, \c names and \c sorts are their projected sorts.
- \c projs is an output paramter. It contains the set of projection functions.
+ \c projs is an output parameter. It contains the set of projection functions.
*/
func_decl tuple_sort(char const * name, unsigned n, char const * const * names, sort const* sorts, func_decl_vector & projs);
@@ -278,12 +314,23 @@ namespace z3 {
func_decl function(char const * name, sort const & d1, sort const & d2, sort const & d3, sort const & d4, sort const & range);
func_decl function(char const * name, sort const & d1, sort const & d2, sort const & d3, sort const & d4, sort const & d5, sort const & range);
+ func_decl recfun(symbol const & name, unsigned arity, sort const * domain, sort const & range);
+ func_decl recfun(char const * name, unsigned arity, sort const * domain, sort const & range);
+ func_decl recfun(char const * name, sort const & domain, sort const & range);
+ func_decl recfun(char const * name, sort const & d1, sort const & d2, sort const & range);
+
+ void recdef(func_decl, expr_vector const& args, expr const& body);
+
expr constant(symbol const & name, sort const & s);
expr constant(char const * name, sort const & s);
expr bool_const(char const * name);
expr int_const(char const * name);
expr real_const(char const * name);
expr bv_const(char const * name, unsigned sz);
+ expr fpa_const(char const * name, unsigned ebits, unsigned sbits);
+
+ template
+ expr fpa_const(char const * name);
expr bool_val(bool b);
@@ -307,6 +354,9 @@ namespace z3 {
expr bv_val(char const * n, unsigned sz);
expr bv_val(unsigned n, bool const* bits);
+ expr fpa_val(double n);
+ expr fpa_val(float n);
+
expr string_val(char const* s);
expr string_val(std::string const& s);
@@ -455,7 +505,7 @@ namespace z3 {
out << Z3_ast_to_string(n.ctx(), n.m_ast); return out;
}
- inline bool eq(ast const & a, ast const & b) { return Z3_is_eq_ast(a.ctx(), a, b) != 0; }
+ inline bool eq(ast const & a, ast const & b) { return Z3_is_eq_ast(a.ctx(), a, b); }
/**
@@ -465,6 +515,7 @@ namespace z3 {
public:
sort(context & c):ast(c) {}
sort(context & c, Z3_sort s):ast(c, reinterpret_cast(s)) {}
+ sort(context & c, Z3_ast a):ast(c, a) {}
sort(sort const & s):ast(s) {}
operator Z3_sort() const { return reinterpret_cast(m_ast); }
/**
@@ -523,6 +574,10 @@ namespace z3 {
\brief Return true if this sort is a Finite domain sort.
*/
bool is_finite_domain() const { return sort_kind() == Z3_FINITE_DOMAIN_SORT; }
+ /**
+ \brief Return true if this sort is a Floating point sort.
+ */
+ bool is_fpa() const { return sort_kind() == Z3_FLOATING_POINT_SORT; }
/**
\brief Return the size of this Bit-vector sort.
@@ -531,6 +586,9 @@ namespace z3 {
*/
unsigned bv_size() const { assert(is_bv()); unsigned r = Z3_get_bv_sort_size(ctx(), *this); check_error(); return r; }
+ unsigned fpa_ebits() const { assert(is_fpa()); unsigned r = Z3_fpa_get_ebits(ctx(), *this); check_error(); return r; }
+
+ unsigned fpa_sbits() const { assert(is_fpa()); unsigned r = Z3_fpa_get_sbits(ctx(), *this); check_error(); return r; }
/**
\brief Return the domain of this Array sort.
@@ -634,7 +692,7 @@ namespace z3 {
\brief Return true if this is a regular expression.
*/
bool is_re() const { return get_sort().is_re(); }
-
+
/**
\brief Return true if this is a Finite-domain expression.
@@ -644,6 +702,10 @@ namespace z3 {
*/
bool is_finite_domain() const { return get_sort().is_finite_domain(); }
+ /**
+ \brief Return true if this is a FloatingPoint expression. .
+ */
+ bool is_fpa() const { return get_sort().is_fpa(); }
/**
\brief Return true if this expression is a numeral.
@@ -651,12 +713,13 @@ namespace z3 {
small integers, 64 bit integers or rational or decimal strings.
*/
bool is_numeral() const { return kind() == Z3_NUMERAL_AST; }
- bool is_numeral_i64(int64_t& i) const { bool r = 0 != Z3_get_numeral_int64(ctx(), m_ast, &i); check_error(); return r;}
- bool is_numeral_u64(uint64_t& i) const { bool r = 0 != Z3_get_numeral_uint64(ctx(), m_ast, &i); check_error(); return r;}
- bool is_numeral_i(int& i) const { bool r = 0 != Z3_get_numeral_int(ctx(), m_ast, &i); check_error(); return r;}
- bool is_numeral_u(unsigned& i) const { bool r = 0 != Z3_get_numeral_uint(ctx(), m_ast, &i); check_error(); return r;}
+ bool is_numeral_i64(int64_t& i) const { bool r = Z3_get_numeral_int64(ctx(), m_ast, &i); check_error(); return r;}
+ bool is_numeral_u64(uint64_t& i) const { bool r = Z3_get_numeral_uint64(ctx(), m_ast, &i); check_error(); return r;}
+ bool is_numeral_i(int& i) const { bool r = Z3_get_numeral_int(ctx(), m_ast, &i); check_error(); return r;}
+ bool is_numeral_u(unsigned& i) const { bool r = Z3_get_numeral_uint(ctx(), m_ast, &i); check_error(); return r;}
bool is_numeral(std::string& s) const { if (!is_numeral()) return false; s = Z3_get_numeral_string(ctx(), m_ast); check_error(); return true; }
bool is_numeral(std::string& s, unsigned precision) const { if (!is_numeral()) return false; s = Z3_get_numeral_decimal_string(ctx(), m_ast, precision); check_error(); return true; }
+ bool is_numeral(double& d) const { if (!is_numeral()) return false; d = Z3_get_numeral_double(ctx(), m_ast); check_error(); return true; }
/**
\brief Return true if this expression is an application.
*/
@@ -673,15 +736,15 @@ namespace z3 {
/**
\brief Return true if this expression is a universal quantifier.
*/
- bool is_forall() const { return 0 != Z3_is_quantifier_forall(ctx(), m_ast); }
+ bool is_forall() const { return Z3_is_quantifier_forall(ctx(), m_ast); }
/**
\brief Return true if this expression is an existential quantifier.
*/
- bool is_exists() const { return 0 != Z3_is_quantifier_exists(ctx(), m_ast); }
+ bool is_exists() const { return Z3_is_quantifier_exists(ctx(), m_ast); }
/**
\brief Return true if this expression is a lambda expression.
*/
- bool is_lambda() const { return 0 != Z3_is_lambda(ctx(), m_ast); }
+ bool is_lambda() const { return Z3_is_lambda(ctx(), m_ast); }
/**
\brief Return true if this expression is a variable.
@@ -690,35 +753,35 @@ namespace z3 {
/**
\brief Return true if expression is an algebraic number.
*/
- bool is_algebraic() const { return 0 != Z3_is_algebraic_number(ctx(), m_ast); }
+ bool is_algebraic() const { return Z3_is_algebraic_number(ctx(), m_ast); }
/**
\brief Return true if this expression is well sorted (aka type correct).
*/
- bool is_well_sorted() const { bool r = Z3_is_well_sorted(ctx(), m_ast) != 0; check_error(); return r; }
-
+ bool is_well_sorted() const { bool r = Z3_is_well_sorted(ctx(), m_ast); check_error(); return r; }
+
/**
\brief Return string representation of numeral or algebraic number
This method assumes the expression is numeral or algebraic
-
+
\pre is_numeral() || is_algebraic()
*/
std::string get_decimal_string(int precision) const {
assert(is_numeral() || is_algebraic());
return std::string(Z3_get_numeral_decimal_string(ctx(), m_ast, precision));
}
-
+
/**
\brief Return int value of numeral, throw if result cannot fit in
machine int
It only makes sense to use this function if the caller can ensure that
- the result is an integer or if exceptions are enabled.
+ the result is an integer or if exceptions are enabled.
If exceptions are disabled, then use the is_numeral_i function.
-
+
\pre is_numeral()
*/
- int get_numeral_int() const {
+ int get_numeral_int() const {
int result = 0;
if (!is_numeral_i(result)) {
assert(ctx().enable_exceptions());
@@ -727,13 +790,13 @@ namespace z3 {
}
return result;
}
-
+
/**
\brief Return uint value of numeral, throw if result cannot fit in
machine uint
It only makes sense to use this function if the caller can ensure that
- the result is an integer or if exceptions are enabled.
+ the result is an integer or if exceptions are enabled.
If exceptions are disabled, then use the is_numeral_u function.
\pre is_numeral()
*/
@@ -747,11 +810,11 @@ namespace z3 {
}
return result;
}
-
+
/**
\brief Return \c int64_t value of numeral, throw if result cannot fit in
\c int64_t.
-
+
\pre is_numeral()
*/
int64_t get_numeral_int64() const {
@@ -764,11 +827,11 @@ namespace z3 {
}
return result;
}
-
+
/**
\brief Return \c uint64_t value of numeral, throw if result cannot fit in
\c uint64_t.
-
+
\pre is_numeral()
*/
uint64_t get_numeral_uint64() const {
@@ -786,7 +849,7 @@ namespace z3 {
return Z3_get_bool_value(ctx(), m_ast);
}
- expr numerator() const {
+ expr numerator() const {
assert(is_numeral());
Z3_ast r = Z3_get_numerator(ctx(), m_ast);
check_error();
@@ -794,7 +857,7 @@ namespace z3 {
}
- expr denominator() const {
+ expr denominator() const {
assert(is_numeral());
Z3_ast r = Z3_get_denominator(ctx(), m_ast);
check_error();
@@ -803,6 +866,17 @@ namespace z3 {
operator Z3_app() const { assert(is_app()); return reinterpret_cast(m_ast); }
+ /**
+ \brief Return a RoundingMode sort.
+ */
+ sort fpa_rounding_mode() {
+ assert(is_fpa());
+ Z3_sort s = ctx().fpa_rounding_mode();
+ check_error();
+ return sort(ctx(), s);
+ }
+
+
/**
\brief Return the declaration associated with this application.
This method assumes the expression is an application.
@@ -905,7 +979,7 @@ namespace z3 {
bool is_implies() const { return is_app() && Z3_OP_IMPLIES == decl().decl_kind(); }
bool is_eq() const { return is_app() && Z3_OP_EQ == decl().decl_kind(); }
bool is_ite() const { return is_app() && Z3_OP_ITE == decl().decl_kind(); }
-
+
friend expr distinct(expr_vector const& args);
friend expr concat(expr const& a, expr const& b);
friend expr concat(expr_vector const& args);
@@ -992,23 +1066,34 @@ namespace z3 {
friend expr nor(expr const& a, expr const& b);
friend expr xnor(expr const& a, expr const& b);
+ friend expr min(expr const& a, expr const& b);
+ friend expr max(expr const& a, expr const& b);
+
expr rotate_left(unsigned i) { Z3_ast r = Z3_mk_rotate_left(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
expr rotate_right(unsigned i) { Z3_ast r = Z3_mk_rotate_right(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
expr repeat(unsigned i) { Z3_ast r = Z3_mk_repeat(ctx(), i, *this); ctx().check_error(); return expr(ctx(), r); }
+ friend expr abs(expr const & a);
+ friend expr sqrt(expr const & a, expr const & rm);
+
friend expr operator~(expr const & a);
- expr extract(unsigned hi, unsigned lo) const { Z3_ast r = Z3_mk_extract(ctx(), hi, lo, *this); ctx().check_error(); return expr(ctx(), r); }
+ expr extract(unsigned hi, unsigned lo) const { Z3_ast r = Z3_mk_extract(ctx(), hi, lo, *this); ctx().check_error(); return expr(ctx(), r); }
unsigned lo() const { assert (is_app() && Z3_get_decl_num_parameters(ctx(), decl()) == 2); return static_cast(Z3_get_decl_int_parameter(ctx(), decl(), 1)); }
unsigned hi() const { assert (is_app() && Z3_get_decl_num_parameters(ctx(), decl()) == 2); return static_cast(Z3_get_decl_int_parameter(ctx(), decl(), 0)); }
+ /**
+ \brief FloatingPoint fused multiply-add.
+ */
+ friend expr fma(expr const& a, expr const& b, expr const& c);
+
/**
\brief sequence and regular expression operations.
+ is overloaded as sequence concatenation and regular expression union.
concat is overloaded to handle sequences and regular expressions
*/
- expr extract(expr const& offset, expr const& length) const {
+ expr extract(expr const& offset, expr const& length) const {
check_context(*this, offset); check_context(offset, length);
- Z3_ast r = Z3_mk_seq_extract(ctx(), *this, offset, length); check_error(); return expr(ctx(), r);
+ Z3_ast r = Z3_mk_seq_extract(ctx(), *this, offset, length); check_error(); return expr(ctx(), r);
}
expr replace(expr const& src, expr const& dst) const {
check_context(*this, src); check_context(src, dst);
@@ -1049,19 +1134,19 @@ namespace z3 {
return expr(ctx(), r);
}
- friend expr range(expr const& lo, expr const& hi);
+ friend expr range(expr const& lo, expr const& hi);
/**
\brief create a looping regular expression.
*/
expr loop(unsigned lo) {
- Z3_ast r = Z3_mk_re_loop(ctx(), m_ast, lo, 0);
- check_error();
- return expr(ctx(), r);
+ Z3_ast r = Z3_mk_re_loop(ctx(), m_ast, lo, 0);
+ check_error();
+ return expr(ctx(), r);
}
expr loop(unsigned lo, unsigned hi) {
- Z3_ast r = Z3_mk_re_loop(ctx(), m_ast, lo, hi);
- check_error();
- return expr(ctx(), r);
+ Z3_ast r = Z3_mk_re_loop(ctx(), m_ast, lo, hi);
+ check_error();
+ return expr(ctx(), r);
}
@@ -1094,7 +1179,7 @@ namespace z3 {
inline expr implies(expr const & a, expr const & b) {
- assert(a.is_bool() && b.is_bool());
+ assert(a.is_bool() && b.is_bool());
_Z3_MK_BIN_(a, b, Z3_mk_implies);
}
inline expr implies(expr const & a, bool b) { return implies(a, a.ctx().bool_val(b)); }
@@ -1109,7 +1194,13 @@ namespace z3 {
inline expr mod(expr const & a, int b) { return mod(a, a.ctx().num_val(b, a.get_sort())); }
inline expr mod(int a, expr const & b) { return mod(b.ctx().num_val(a, b.get_sort()), b); }
- inline expr rem(expr const& a, expr const& b) { _Z3_MK_BIN_(a, b, Z3_mk_rem); }
+ inline expr rem(expr const& a, expr const& b) {
+ if (a.is_fpa() && b.is_fpa()) {
+ _Z3_MK_BIN_(a, b, Z3_mk_fpa_rem);
+ } else {
+ _Z3_MK_BIN_(a, b, Z3_mk_rem);
+ }
+ }
inline expr rem(expr const & a, int b) { return rem(a, a.ctx().num_val(b, a.get_sort())); }
inline expr rem(int a, expr const & b) { return rem(b.ctx().num_val(a, b.get_sort()), b); }
@@ -1158,8 +1249,8 @@ namespace z3 {
a.check_error();
return expr(a.ctx(), r);
}
- inline expr operator==(expr const & a, int b) { assert(a.is_arith() || a.is_bv()); return a == a.ctx().num_val(b, a.get_sort()); }
- inline expr operator==(int a, expr const & b) { assert(b.is_arith() || b.is_bv()); return b.ctx().num_val(a, b.get_sort()) == b; }
+ inline expr operator==(expr const & a, int b) { assert(a.is_arith() || a.is_bv() || a.is_fpa()); return a == a.ctx().num_val(b, a.get_sort()); }
+ inline expr operator==(int a, expr const & b) { assert(b.is_arith() || b.is_bv() || b.is_fpa()); return b.ctx().num_val(a, b.get_sort()) == b; }
inline expr operator!=(expr const & a, expr const & b) {
check_context(a, b);
@@ -1168,8 +1259,8 @@ namespace z3 {
a.check_error();
return expr(a.ctx(), r);
}
- inline expr operator!=(expr const & a, int b) { assert(a.is_arith() || a.is_bv()); return a != a.ctx().num_val(b, a.get_sort()); }
- inline expr operator!=(int a, expr const & b) { assert(b.is_arith() || b.is_bv()); return b.ctx().num_val(a, b.get_sort()) != b; }
+ inline expr operator!=(expr const & a, int b) { assert(a.is_arith() || a.is_bv() || a.is_fpa()); return a != a.ctx().num_val(b, a.get_sort()); }
+ inline expr operator!=(int a, expr const & b) { assert(b.is_arith() || b.is_bv() || b.is_fpa()); return b.ctx().num_val(a, b.get_sort()) != b; }
inline expr operator+(expr const & a, expr const & b) {
check_context(a, b);
@@ -1188,6 +1279,9 @@ namespace z3 {
Z3_ast _args[2] = { a, b };
r = Z3_mk_re_union(a.ctx(), 2, _args);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_add(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1208,6 +1302,9 @@ namespace z3 {
else if (a.is_bv() && b.is_bv()) {
r = Z3_mk_bvmul(a.ctx(), a, b);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_mul(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1245,6 +1342,9 @@ namespace z3 {
else if (a.is_bv() && b.is_bv()) {
r = Z3_mk_bvsdiv(a.ctx(), a, b);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_div(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1263,6 +1363,9 @@ namespace z3 {
else if (a.is_bv()) {
r = Z3_mk_bvneg(a.ctx(), a);
}
+ else if (a.is_fpa()) {
+ r = Z3_mk_fpa_neg(a.ctx(), a);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1281,6 +1384,9 @@ namespace z3 {
else if (a.is_bv() && b.is_bv()) {
r = Z3_mk_bvsub(a.ctx(), a, b);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_sub(a.ctx(), a.ctx().fpa_rounding_mode(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1300,6 +1406,9 @@ namespace z3 {
else if (a.is_bv() && b.is_bv()) {
r = Z3_mk_bvsle(a.ctx(), a, b);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_leq(a.ctx(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1322,6 +1431,9 @@ namespace z3 {
else if (a.is_bv() && b.is_bv()) {
r = Z3_mk_bvslt(a.ctx(), a, b);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_lt(a.ctx(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1341,6 +1453,9 @@ namespace z3 {
else if (a.is_bv() && b.is_bv()) {
r = Z3_mk_bvsgt(a.ctx(), a, b);
}
+ else if (a.is_fpa() && b.is_fpa()) {
+ r = Z3_mk_fpa_gt(a.ctx(), a, b);
+ }
else {
// operator is not supported by given arguments.
assert(false);
@@ -1366,17 +1481,72 @@ namespace z3 {
inline expr nand(expr const& a, expr const& b) { check_context(a, b); Z3_ast r = Z3_mk_bvnand(a.ctx(), a, b); return expr(a.ctx(), r); }
inline expr nor(expr const& a, expr const& b) { check_context(a, b); Z3_ast r = Z3_mk_bvnor(a.ctx(), a, b); return expr(a.ctx(), r); }
inline expr xnor(expr const& a, expr const& b) { check_context(a, b); Z3_ast r = Z3_mk_bvxnor(a.ctx(), a, b); return expr(a.ctx(), r); }
-
+ inline expr min(expr const& a, expr const& b) {
+ check_context(a, b);
+ Z3_ast r;
+ if (a.is_arith()) {
+ r = Z3_mk_ite(a.ctx(), Z3_mk_ge(a.ctx(), a, b), b, a);
+ }
+ else if (a.is_bv()) {
+ r = Z3_mk_ite(a.ctx(), Z3_mk_bvuge(a.ctx(), a, b), b, a);
+ }
+ else {
+ assert(a.is_fpa());
+ r = Z3_mk_fpa_min(a.ctx(), a, b);
+ }
+ return expr(a.ctx(), r);
+ }
+ inline expr max(expr const& a, expr const& b) {
+ check_context(a, b);
+ Z3_ast r;
+ if (a.is_arith()) {
+ r = Z3_mk_ite(a.ctx(), Z3_mk_ge(a.ctx(), a, b), a, b);
+ }
+ else if (a.is_bv()) {
+ r = Z3_mk_ite(a.ctx(), Z3_mk_bvuge(a.ctx(), a, b), a, b);
+ }
+ else {
+ assert(a.is_fpa());
+ r = Z3_mk_fpa_max(a.ctx(), a, b);
+ }
+ return expr(a.ctx(), r);
+ }
+ inline expr abs(expr const & a) {
+ Z3_ast r;
+ if (a.is_int()) {
+ expr zero = a.ctx().int_val(0);
+ r = Z3_mk_ite(a.ctx(), Z3_mk_ge(a.ctx(), a, zero), a, -a);
+ }
+ else if (a.is_real()) {
+ expr zero = a.ctx().real_val(0);
+ r = Z3_mk_ite(a.ctx(), Z3_mk_ge(a.ctx(), a, zero), a, -a);
+ }
+ else {
+ r = Z3_mk_fpa_abs(a.ctx(), a);
+ }
+ return expr(a.ctx(), r);
+ }
+ inline expr sqrt(expr const & a, expr const& rm) {
+ check_context(a, rm);
+ assert(a.is_fpa());
+ Z3_ast r = Z3_mk_fpa_sqrt(a.ctx(), rm, a);
+ return expr(a.ctx(), r);
+ }
inline expr operator~(expr const & a) { Z3_ast r = Z3_mk_bvnot(a.ctx(), a); return expr(a.ctx(), r); }
-
+ inline expr fma(expr const& a, expr const& b, expr const& c, expr const& rm) {
+ check_context(a, b); check_context(a, c); check_context(a, rm);
+ assert(a.is_fpa() && b.is_fpa() && c.is_fpa());
+ Z3_ast r = Z3_mk_fpa_fma(a.ctx(), rm, a, b, c);
+ a.check_error();
+ return expr(a.ctx(), r);
+ }
/**
\brief Create the if-then-else expression ite(c, t, e)
\pre c.is_bool()
*/
-
inline expr ite(expr const & c, expr const & t, expr const & e) {
check_context(c, t); check_context(c, e);
assert(c.is_bool());
@@ -1453,45 +1623,45 @@ namespace z3 {
inline expr smod(expr const & a, expr const & b) { return to_expr(a.ctx(), Z3_mk_bvsmod(a.ctx(), a, b)); }
inline expr smod(expr const & a, int b) { return smod(a, a.ctx().num_val(b, a.get_sort())); }
inline expr smod(int a, expr const & b) { return smod(b.ctx().num_val(a, b.get_sort()), b); }
-
+
/**
\brief unsigned reminder operator for bitvectors
*/
inline expr urem(expr const & a, expr const & b) { return to_expr(a.ctx(), Z3_mk_bvurem(a.ctx(), a, b)); }
inline expr urem(expr const & a, int b) { return urem(a, a.ctx().num_val(b, a.get_sort())); }
inline expr urem(int a, expr const & b) { return urem(b.ctx().num_val(a, b.get_sort()), b); }
-
+
/**
\brief shift left operator for bitvectors
*/
inline expr shl(expr const & a, expr const & b) { return to_expr(a.ctx(), Z3_mk_bvshl(a.ctx(), a, b)); }
inline expr shl(expr const & a, int b) { return shl(a, a.ctx().num_val(b, a.get_sort())); }
inline expr shl(int a, expr const & b) { return shl(b.ctx().num_val(a, b.get_sort()), b); }
-
+
/**
\brief logic shift right operator for bitvectors
*/
inline expr lshr(expr const & a, expr const & b) { return to_expr(a.ctx(), Z3_mk_bvlshr(a.ctx(), a, b)); }
inline expr lshr(expr const & a, int b) { return lshr(a, a.ctx().num_val(b, a.get_sort())); }
inline expr lshr(int a, expr const & b) { return lshr(b.ctx().num_val(a, b.get_sort()), b); }
-
+
/**
\brief arithmetic shift right operator for bitvectors
*/
inline expr ashr(expr const & a, expr const & b) { return to_expr(a.ctx(), Z3_mk_bvashr(a.ctx(), a, b)); }
inline expr ashr(expr const & a, int b) { return ashr(a, a.ctx().num_val(b, a.get_sort())); }
inline expr ashr(int a, expr const & b) { return ashr(b.ctx().num_val(a, b.get_sort()), b); }
-
+
/**
\brief Extend the given bit-vector with zeros to the (unsigned) equivalent bitvector of size m+i, where m is the size of the given bit-vector.
*/
inline expr zext(expr const & a, unsigned i) { return to_expr(a.ctx(), Z3_mk_zero_ext(a.ctx(), i, a)); }
-
+
/**
\brief Sign-extend of the given bit-vector to the (signed) equivalent bitvector of size m+i, where m is the size of the given bit-vector.
*/
inline expr sext(expr const & a, unsigned i) { return to_expr(a.ctx(), Z3_mk_sign_ext(a.ctx(), i, a)); }
-
+
template class cast_ast;
template<> class cast_ast {
@@ -1563,7 +1733,7 @@ namespace z3 {
unsigned m_index;
public:
iterator(ast_vector_tpl const* v, unsigned i): m_vector(v), m_index(i) {}
- iterator(iterator& other): m_vector(other.m_vector), m_index(other.m_index) {}
+ iterator(iterator& other): m_vector(other.m_vector), m_index(other.m_index) {}
iterator operator=(iterator const& other) { m_vector = other.m_vector; m_index = other.m_index; return *this; }
bool operator==(iterator const& other) {
@@ -1773,7 +1943,7 @@ namespace z3 {
return expr(ctx, r);
}
- inline expr mk_or(expr_vector const& args) {
+ inline expr mk_or(expr_vector const& args) {
array _args(args);
Z3_ast r = Z3_mk_or(args.ctx(), _args.size(), _args.ptr());
args.check_error();
@@ -1852,7 +2022,7 @@ namespace z3 {
model(context & c):object(c) { init(Z3_mk_model(c)); }
model(context & c, Z3_model m):object(c) { init(m); }
model(model const & s):object(s) { init(s.m_model); }
- model(model& src, context& dst, translate) : object(dst) { init(Z3_model_translate(src.ctx(), src, dst)); }
+ model(model& src, context& dst, translate) : object(dst) { init(Z3_model_translate(src.ctx(), src, dst)); }
~model() { Z3_model_dec_ref(ctx(), m_model); }
operator Z3_model() const { return m_model; }
model & operator=(model const & s) {
@@ -1866,9 +2036,9 @@ namespace z3 {
expr eval(expr const & n, bool model_completion=false) const {
check_context(*this, n);
Z3_ast r = 0;
- Z3_bool status = Z3_model_eval(ctx(), m_model, n, model_completion, &r);
+ bool status = Z3_model_eval(ctx(), m_model, n, model_completion, &r);
check_error();
- if (status == Z3_FALSE && ctx().enable_exceptions())
+ if (status == false && ctx().enable_exceptions())
Z3_THROW(exception("failed to evaluate expression"));
return expr(ctx(), r);
}
@@ -1884,7 +2054,7 @@ namespace z3 {
}
// returns interpretation of constant declaration c.
- // If c is not assigned any value in the model it returns
+ // If c is not assigned any value in the model it returns
// an expression with a null ast reference.
expr get_const_interp(func_decl c) const {
check_context(*this, c);
@@ -1898,12 +2068,12 @@ namespace z3 {
check_error();
return func_interp(ctx(), r);
}
-
+
// returns true iff the model contains an interpretation
// for function f.
bool has_interp(func_decl f) const {
check_context(*this, f);
- return 0 != Z3_model_has_interp(ctx(), m_model, f);
+ return Z3_model_has_interp(ctx(), m_model, f);
}
func_interp add_func_interp(func_decl& f, expr& else_val) {
@@ -1942,10 +2112,10 @@ namespace z3 {
}
unsigned size() const { return Z3_stats_size(ctx(), m_stats); }
std::string key(unsigned i) const { Z3_string s = Z3_stats_get_key(ctx(), m_stats, i); check_error(); return s; }
- bool is_uint(unsigned i) const { Z3_bool r = Z3_stats_is_uint(ctx(), m_stats, i); check_error(); return r != 0; }
- bool is_double(unsigned i) const { Z3_bool r = Z3_stats_is_double(ctx(), m_stats, i); check_error(); return r != 0; }
+ bool is_uint(unsigned i) const { bool r = Z3_stats_is_uint(ctx(), m_stats, i); check_error(); return r; }
+ bool is_double(unsigned i) const { bool r = Z3_stats_is_double(ctx(), m_stats, i); check_error(); return r; }
unsigned uint_value(unsigned i) const { unsigned r = Z3_stats_get_uint_value(ctx(), m_stats, i); check_error(); return r; }
- double double_value(unsigned i) const { double r = Z3_stats_get_double_value(ctx(), m_stats, i); check_error(); return r; }
+ double double_value(unsigned i) const { double r = Z3_stats_get_double_value(ctx(), m_stats, i); check_error(); return r; }
friend std::ostream & operator<<(std::ostream & out, stats const & s);
};
inline std::ostream & operator<<(std::ostream & out, stats const & s) { out << Z3_stats_to_string(s.ctx(), s); return out; }
@@ -2001,7 +2171,7 @@ namespace z3 {
void add(expr const & e, char const * p) {
add(e, ctx().bool_const(p));
}
- // fails for some compilers:
+ // fails for some compilers:
// void add(expr_vector const& v) { check_context(*this, v); for (expr e : v) add(e); }
void from_file(char const* file) { Z3_solver_from_file(ctx(), m_solver, file); ctx().check_parser_error(); }
void from_string(char const* s) { Z3_solver_from_string(ctx(), m_solver, s); ctx().check_parser_error(); }
@@ -2038,6 +2208,8 @@ namespace z3 {
stats statistics() const { Z3_stats r = Z3_solver_get_statistics(ctx(), m_solver); check_error(); return stats(ctx(), r); }
expr_vector unsat_core() const { Z3_ast_vector r = Z3_solver_get_unsat_core(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }
expr_vector assertions() const { Z3_ast_vector r = Z3_solver_get_assertions(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }
+ expr_vector non_units() const { Z3_ast_vector r = Z3_solver_get_non_units(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }
+ expr_vector units() const { Z3_ast_vector r = Z3_solver_get_units(ctx(), m_solver); check_error(); return expr_vector(ctx(), r); }
expr proof() const { Z3_ast r = Z3_solver_get_proof(ctx(), m_solver); check_error(); return expr(ctx(), r); }
friend std::ostream & operator<<(std::ostream & out, solver const & s);
@@ -2064,11 +2236,11 @@ namespace z3 {
param_descrs get_param_descrs() { return param_descrs(ctx(), Z3_solver_get_param_descrs(ctx(), m_solver)); }
- expr_vector cube(expr_vector& vars, unsigned cutoff) {
- Z3_ast_vector r = Z3_solver_cube(ctx(), m_solver, vars, cutoff);
- check_error();
- return expr_vector(ctx(), r);
- }
+ expr_vector cube(expr_vector& vars, unsigned cutoff) {
+ Z3_ast_vector r = Z3_solver_cube(ctx(), m_solver, vars, cutoff);
+ check_error();
+ return expr_vector(ctx(), r);
+ }
class cube_iterator {
solver& m_solver;
@@ -2116,7 +2288,7 @@ namespace z3 {
cube_iterator operator++(int) { assert(false); return *this; }
expr_vector const * operator->() const { return &(operator*()); }
expr_vector const& operator*() const { return m_cube; }
-
+
bool operator==(cube_iterator const& other) {
return other.m_end == m_end;
};
@@ -2181,12 +2353,12 @@ namespace z3 {
unsigned size() const { return Z3_goal_size(ctx(), m_goal); }
expr operator[](int i) const { assert(0 <= i); Z3_ast r = Z3_goal_formula(ctx(), m_goal, i); check_error(); return expr(ctx(), r); }
Z3_goal_prec precision() const { return Z3_goal_precision(ctx(), m_goal); }
- bool inconsistent() const { return Z3_goal_inconsistent(ctx(), m_goal) != 0; }
+ bool inconsistent() const { return Z3_goal_inconsistent(ctx(), m_goal); }
unsigned depth() const { return Z3_goal_depth(ctx(), m_goal); }
void reset() { Z3_goal_reset(ctx(), m_goal); }
unsigned num_exprs() const { return Z3_goal_num_exprs(ctx(), m_goal); }
- bool is_decided_sat() const { return Z3_goal_is_decided_sat(ctx(), m_goal) != 0; }
- bool is_decided_unsat() const { return Z3_goal_is_decided_unsat(ctx(), m_goal) != 0; }
+ bool is_decided_sat() const { return Z3_goal_is_decided_sat(ctx(), m_goal); }
+ bool is_decided_unsat() const { return Z3_goal_is_decided_unsat(ctx(), m_goal); }
model convert_model(model const & m) const {
check_context(*this, m);
Z3_model new_m = Z3_goal_convert_model(ctx(), m_goal, m);
@@ -2405,7 +2577,7 @@ namespace z3 {
class optimize : public object {
Z3_optimize m_opt;
-
+
public:
class handle {
unsigned m_h;
@@ -2453,8 +2625,20 @@ namespace z3 {
void pop() {
Z3_optimize_pop(ctx(), m_opt);
}
- check_result check() { Z3_lbool r = Z3_optimize_check(ctx(), m_opt); check_error(); return to_check_result(r); }
+ check_result check() { Z3_lbool r = Z3_optimize_check(ctx(), m_opt, 0, 0); check_error(); return to_check_result(r); }
+ check_result check(expr_vector const& asms) {
+ unsigned n = asms.size();
+ array _asms(n);
+ for (unsigned i = 0; i < n; i++) {
+ check_context(*this, asms[i]);
+ _asms[i] = asms[i];
+ }
+ Z3_lbool r = Z3_optimize_check(ctx(), m_opt, n, _asms.ptr());
+ check_error();
+ return to_check_result(r);
+ }
model get_model() const { Z3_model m = Z3_optimize_get_model(ctx(), m_opt); check_error(); return model(ctx(), m); }
+ expr_vector unsat_core() const { Z3_ast_vector r = Z3_optimize_get_unsat_core(ctx(), m_opt); check_error(); return expr_vector(ctx(), r); }
void set(params const & p) { Z3_optimize_set_params(ctx(), m_opt, p); check_error(); }
expr lower(handle const& h) {
Z3_ast r = Z3_optimize_get_lower(ctx(), m_opt, h.h());
@@ -2481,25 +2665,25 @@ namespace z3 {
public:
fixedpoint(context& c):object(c) { m_fp = Z3_mk_fixedpoint(c); Z3_fixedpoint_inc_ref(c, m_fp); }
~fixedpoint() { Z3_fixedpoint_dec_ref(ctx(), m_fp); }
- operator Z3_fixedpoint() const { return m_fp; }
+ operator Z3_fixedpoint() const { return m_fp; }
void from_string(char const* s) { Z3_fixedpoint_from_string(ctx(), m_fp, s); check_error(); }
void from_file(char const* s) { Z3_fixedpoint_from_file(ctx(), m_fp, s); check_error(); }
void add_rule(expr& rule, symbol const& name) { Z3_fixedpoint_add_rule(ctx(), m_fp, rule, name); check_error(); }
void add_fact(func_decl& f, unsigned * args) { Z3_fixedpoint_add_fact(ctx(), m_fp, f, f.arity(), args); check_error(); }
check_result query(expr& q) { Z3_lbool r = Z3_fixedpoint_query(ctx(), m_fp, q); check_error(); return to_check_result(r); }
- check_result query(func_decl_vector& relations) {
+ check_result query(func_decl_vector& relations) {
array rs(relations);
- Z3_lbool r = Z3_fixedpoint_query_relations(ctx(), m_fp, rs.size(), rs.ptr());
- check_error();
- return to_check_result(r);
+ Z3_lbool r = Z3_fixedpoint_query_relations(ctx(), m_fp, rs.size(), rs.ptr());
+ check_error();
+ return to_check_result(r);
}
expr get_answer() { Z3_ast r = Z3_fixedpoint_get_answer(ctx(), m_fp); check_error(); return expr(ctx(), r); }
std::string reason_unknown() { return Z3_fixedpoint_get_reason_unknown(ctx(), m_fp); }
void update_rule(expr& rule, symbol const& name) { Z3_fixedpoint_update_rule(ctx(), m_fp, rule, name); check_error(); }
unsigned get_num_levels(func_decl& p) { unsigned r = Z3_fixedpoint_get_num_levels(ctx(), m_fp, p); check_error(); return r; }
- expr get_cover_delta(int level, func_decl& p) {
- Z3_ast r = Z3_fixedpoint_get_cover_delta(ctx(), m_fp, level, p);
- check_error();
+ expr get_cover_delta(int level, func_decl& p) {
+ Z3_ast r = Z3_fixedpoint_get_cover_delta(ctx(), m_fp, level, p);
+ check_error();
return expr(ctx(), r);
}
void add_cover(int level, func_decl& p, expr& property) { Z3_fixedpoint_add_cover(ctx(), m_fp, level, p, property); check_error(); }
@@ -2513,7 +2697,7 @@ namespace z3 {
std::string to_string() { return Z3_fixedpoint_to_string(ctx(), m_fp, 0, 0); }
std::string to_string(expr_vector const& queries) {
array qs(queries);
- return Z3_fixedpoint_to_string(ctx(), m_fp, qs.size(), qs.ptr());
+ return Z3_fixedpoint_to_string(ctx(), m_fp, qs.size(), qs.ptr());
}
void push() { Z3_fixedpoint_push(ctx(), m_fp); check_error(); }
void pop() { Z3_fixedpoint_pop(ctx(), m_fp); check_error(); }
@@ -2548,11 +2732,37 @@ namespace z3 {
inline sort context::string_sort() { Z3_sort s = Z3_mk_string_sort(m_ctx); check_error(); return sort(*this, s); }
inline sort context::seq_sort(sort& s) { Z3_sort r = Z3_mk_seq_sort(m_ctx, s); check_error(); return sort(*this, r); }
inline sort context::re_sort(sort& s) { Z3_sort r = Z3_mk_re_sort(m_ctx, s); check_error(); return sort(*this, r); }
+ inline sort context::fpa_sort(unsigned ebits, unsigned sbits) { Z3_sort s = Z3_mk_fpa_sort(m_ctx, ebits, sbits); check_error(); return sort(*this, s); }
+
+ template<>
+ inline sort context::fpa_sort<16>() { return fpa_sort(5, 11); }
+
+ template<>
+ inline sort context::fpa_sort<32>() { return fpa_sort(8, 24); }
+
+ template<>
+ inline sort context::fpa_sort<64>() { return fpa_sort(11, 53); }
+
+ template<>
+ inline sort context::fpa_sort<128>() { return fpa_sort(15, 113); }
+
+ inline sort context::fpa_rounding_mode() {
+ switch (m_rounding_mode) {
+ case RNA: return sort(*this, Z3_mk_fpa_rna(m_ctx));
+ case RNE: return sort(*this, Z3_mk_fpa_rne(m_ctx));
+ case RTP: return sort(*this, Z3_mk_fpa_rtp(m_ctx));
+ case RTN: return sort(*this, Z3_mk_fpa_rtn(m_ctx));
+ case RTZ: return sort(*this, Z3_mk_fpa_rtz(m_ctx));
+ default: return sort(*this);
+ }
+ }
+
+ inline void context::set_rounding_mode(rounding_mode rm) { m_rounding_mode = rm; }
inline sort context::array_sort(sort d, sort r) { Z3_sort s = Z3_mk_array_sort(m_ctx, d, r); check_error(); return sort(*this, s); }
inline sort context::array_sort(sort_vector const& d, sort r) {
array dom(d);
- Z3_sort s = Z3_mk_array_sort_n(m_ctx, dom.size(), dom.ptr(), r); check_error(); return sort(*this, s);
+ Z3_sort s = Z3_mk_array_sort_n(m_ctx, dom.size(), dom.ptr(), r); check_error(); return sort(*this, s);
}
inline sort context::enumeration_sort(char const * name, unsigned n, char const * const * enum_names, func_decl_vector & cs, func_decl_vector & ts) {
array _enum_names(n);
@@ -2657,6 +2867,37 @@ namespace z3 {
return func_decl(*this, f);
}
+ inline func_decl context::recfun(symbol const & name, unsigned arity, sort const * domain, sort const & range) {
+ array args(arity);
+ for (unsigned i = 0; i < arity; i++) {
+ check_context(domain[i], range);
+ args[i] = domain[i];
+ }
+ Z3_func_decl f = Z3_mk_rec_func_decl(m_ctx, name, arity, args.ptr(), range);
+ check_error();
+ return func_decl(*this, f);
+
+ }
+
+ inline func_decl context::recfun(char const * name, unsigned arity, sort const * domain, sort const & range) {
+ return recfun(str_symbol(name), arity, domain, range);
+ }
+
+ inline func_decl context::recfun(char const * name, sort const& d1, sort const & range) {
+ return recfun(str_symbol(name), 1, &d1, range);
+ }
+
+ inline func_decl context::recfun(char const * name, sort const& d1, sort const& d2, sort const & range) {
+ sort dom[2] = { d1, d2 };
+ return recfun(str_symbol(name), 2, dom, range);
+ }
+
+ inline void context::recdef(func_decl f, expr_vector const& args, expr const& body) {
+ check_context(f, args); check_context(f, body);
+ array vars(args);
+ Z3_add_rec_def(f.ctx(), f, vars.size(), vars.ptr(), body);
+ }
+
inline expr context::constant(symbol const & name, sort const & s) {
Z3_ast r = Z3_mk_const(m_ctx, name, s);
check_error();
@@ -2667,6 +2908,10 @@ namespace z3 {
inline expr context::int_const(char const * name) { return constant(name, int_sort()); }
inline expr context::real_const(char const * name) { return constant(name, real_sort()); }
inline expr context::bv_const(char const * name, unsigned sz) { return constant(name, bv_sort(sz)); }
+ inline expr context::fpa_const(char const * name, unsigned ebits, unsigned sbits) { return constant(name, fpa_sort(ebits, sbits)); }
+
+ template
+ inline expr context::fpa_const(char const * name) { return constant(name, fpa_sort()); }
inline expr context::bool_val(bool b) { return b ? expr(*this, Z3_mk_true(m_ctx)) : expr(*this, Z3_mk_false(m_ctx)); }
@@ -2688,12 +2933,15 @@ namespace z3 {
inline expr context::bv_val(int64_t n, unsigned sz) { sort s = bv_sort(sz); Z3_ast r = Z3_mk_int64(m_ctx, n, s); check_error(); return expr(*this, r); }
inline expr context::bv_val(uint64_t n, unsigned sz) { sort s = bv_sort(sz); Z3_ast r = Z3_mk_unsigned_int64(m_ctx, n, s); check_error(); return expr(*this, r); }
inline expr context::bv_val(char const * n, unsigned sz) { sort s = bv_sort(sz); Z3_ast r = Z3_mk_numeral(m_ctx, n, s); check_error(); return expr(*this, r); }
- inline expr context::bv_val(unsigned n, bool const* bits) {
- array _bits(n);
+ inline expr context::bv_val(unsigned n, bool const* bits) {
+ array _bits(n);
for (unsigned i = 0; i < n; ++i) _bits[i] = bits[i] ? 1 : 0;
- Z3_ast r = Z3_mk_bv_numeral(m_ctx, n, _bits.ptr()); check_error(); return expr(*this, r);
+ Z3_ast r = Z3_mk_bv_numeral(m_ctx, n, _bits.ptr()); check_error(); return expr(*this, r);
}
+ inline expr context::fpa_val(double n) { sort s = fpa_sort<64>(); Z3_ast r = Z3_mk_fpa_numeral_double(m_ctx, n, s); check_error(); return expr(*this, r); }
+ inline expr context::fpa_val(float n) { sort s = fpa_sort<32>(); Z3_ast r = Z3_mk_fpa_numeral_float(m_ctx, n, s); check_error(); return expr(*this, r); }
+
inline expr context::string_val(char const* s) { Z3_ast r = Z3_mk_string(m_ctx, s); check_error(); return expr(*this, r); }
inline expr context::string_val(std::string const& s) { Z3_ast r = Z3_mk_string(m_ctx, s.c_str()); check_error(); return expr(*this, r); }
@@ -2811,14 +3059,27 @@ namespace z3 {
return range.ctx().function(name.c_str(), domain, range);
}
+ inline func_decl recfun(symbol const & name, unsigned arity, sort const * domain, sort const & range) {
+ return range.ctx().recfun(name, arity, domain, range);
+ }
+ inline func_decl recfun(char const * name, unsigned arity, sort const * domain, sort const & range) {
+ return range.ctx().recfun(name, arity, domain, range);
+ }
+ inline func_decl recfun(char const * name, sort const& d1, sort const & range) {
+ return range.ctx().recfun(name, d1, range);
+ }
+ inline func_decl recfun(char const * name, sort const& d1, sort const& d2, sort const & range) {
+ return range.ctx().recfun(name, d1, d2, range);
+ }
+
inline expr select(expr const & a, expr const & i) {
check_context(a, i);
Z3_ast r = Z3_mk_select(a.ctx(), a, i);
a.check_error();
return expr(a.ctx(), r);
}
- inline expr select(expr const & a, int i) {
- return select(a, a.ctx().num_val(i, a.get_sort().array_domain()));
+ inline expr select(expr const & a, int i) {
+ return select(a, a.ctx().num_val(i, a.get_sort().array_domain()));
}
inline expr select(expr const & a, expr_vector const & i) {
check_context(a, i);
@@ -2848,10 +3109,10 @@ namespace z3 {
return expr(a.ctx(), r);
}
- inline expr as_array(func_decl & f) {
- Z3_ast r = Z3_mk_as_array(f.ctx(), f);
- f.check_error();
- return expr(f.ctx(), r);
+ inline expr as_array(func_decl & f) {
+ Z3_ast r = Z3_mk_as_array(f.ctx(), f);
+ f.check_error();
+ return expr(f.ctx(), r);
}
#define MK_EXPR1(_fn, _arg) \
@@ -2883,21 +3144,21 @@ namespace z3 {
inline expr set_del(expr const& s, expr const& e) {
MK_EXPR2(Z3_mk_set_del, s, e);
- }
+ }
inline expr set_union(expr const& a, expr const& b) {
- check_context(a, b);
+ check_context(a, b);
Z3_ast es[2] = { a, b };
Z3_ast r = Z3_mk_set_union(a.ctx(), 2, es);
- a.check_error();
+ a.check_error();
return expr(a.ctx(), r);
}
inline expr set_intersect(expr const& a, expr const& b) {
- check_context(a, b);
+ check_context(a, b);
Z3_ast es[2] = { a, b };
Z3_ast r = Z3_mk_set_intersect(a.ctx(), 2, es);
- a.check_error();
+ a.check_error();
return expr(a.ctx(), r);
}
@@ -2981,10 +3242,10 @@ namespace z3 {
MK_EXPR1(Z3_mk_re_complement, a);
}
inline expr range(expr const& lo, expr const& hi) {
- check_context(lo, hi);
- Z3_ast r = Z3_mk_re_range(lo.ctx(), lo, hi);
- lo.check_error();
- return expr(lo.ctx(), r);
+ check_context(lo, hi);
+ Z3_ast r = Z3_mk_re_range(lo.ctx(), lo, hi);
+ lo.check_error();
+ return expr(lo.ctx(), r);
}
@@ -2995,7 +3256,7 @@ namespace z3 {
Z3_ast_vector r = Z3_parse_smtlib2_string(*this, s, 0, 0, 0, 0, 0, 0);
check_error();
return expr_vector(*this, r);
-
+
}
inline expr_vector context::parse_file(char const* s) {
Z3_ast_vector r = Z3_parse_smtlib2_file(*this, s, 0, 0, 0, 0, 0, 0);
diff --git a/src/api/dotnet/AST.cs b/src/api/dotnet/AST.cs
index 2460c50f0..0afff2c42 100644
--- a/src/api/dotnet/AST.cs
+++ b/src/api/dotnet/AST.cs
@@ -17,17 +17,16 @@ Notes:
--*/
+using System.Diagnostics;
using System;
using System.Collections;
using System.Collections.Generic;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
///
/// The abstract syntax tree (AST) class.
///
- [ContractVerification(true)]
public class AST : Z3Object, IComparable
{
///
@@ -114,8 +113,7 @@ namespace Microsoft.Z3
/// A copy of the AST which is associated with
public AST Translate(Context ctx)
{
- Contract.Requires(ctx != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ctx != null);
if (ReferenceEquals(Context, ctx))
return this;
@@ -202,14 +200,13 @@ namespace Microsoft.Z3
///
public string SExpr()
{
- Contract.Ensures(Contract.Result() != null);
return Native.Z3_ast_to_string(Context.nCtx, NativeObject);
}
#region Internal
- internal AST(Context ctx) : base(ctx) { Contract.Requires(ctx != null); }
- internal AST(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal AST(Context ctx) : base(ctx) { Debug.Assert(ctx != null); }
+ internal AST(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
internal class DecRefQueue : IDecRefQueue
{
@@ -246,8 +243,7 @@ namespace Microsoft.Z3
internal static AST Create(Context ctx, IntPtr obj)
{
- Contract.Requires(ctx != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ctx != null);
switch ((Z3_ast_kind)Native.Z3_get_ast_kind(ctx.nCtx, obj))
{
diff --git a/src/api/dotnet/ASTMap.cs b/src/api/dotnet/ASTMap.cs
index f7c1c5914..f678f71c3 100644
--- a/src/api/dotnet/ASTMap.cs
+++ b/src/api/dotnet/ASTMap.cs
@@ -17,15 +17,14 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
///
/// Map from AST to AST
///
- [ContractVerification(true)]
internal class ASTMap : Z3Object
{
///
@@ -35,7 +34,7 @@ namespace Microsoft.Z3
/// True if is a key in the map, false otherwise.
public bool Contains(AST k)
{
- Contract.Requires(k != null);
+ Debug.Assert(k != null);
return 0 != Native.Z3_ast_map_contains(Context.nCtx, NativeObject, k.NativeObject);
}
@@ -49,8 +48,7 @@ namespace Microsoft.Z3
/// An AST
public AST Find(AST k)
{
- Contract.Requires(k != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(k != null);
return new AST(Context, Native.Z3_ast_map_find(Context.nCtx, NativeObject, k.NativeObject));
}
@@ -62,8 +60,8 @@ namespace Microsoft.Z3
/// The value AST
public void Insert(AST k, AST v)
{
- Contract.Requires(k != null);
- Contract.Requires(v != null);
+ Debug.Assert(k != null);
+ Debug.Assert(v != null);
Native.Z3_ast_map_insert(Context.nCtx, NativeObject, k.NativeObject, v.NativeObject);
}
@@ -74,7 +72,7 @@ namespace Microsoft.Z3
/// An AST
public void Erase(AST k)
{
- Contract.Requires(k != null);
+ Debug.Assert(k != null);
Native.Z3_ast_map_erase(Context.nCtx, NativeObject, k.NativeObject);
}
@@ -119,12 +117,12 @@ namespace Microsoft.Z3
internal ASTMap(Context ctx, IntPtr obj)
: base(ctx, obj)
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
internal ASTMap(Context ctx)
: base(ctx, Native.Z3_mk_ast_map(ctx.nCtx))
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
internal class DecRefQueue : IDecRefQueue
diff --git a/src/api/dotnet/ASTVector.cs b/src/api/dotnet/ASTVector.cs
index 8b599ca48..fcfa6bd65 100644
--- a/src/api/dotnet/ASTVector.cs
+++ b/src/api/dotnet/ASTVector.cs
@@ -17,8 +17,8 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -45,13 +45,12 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
return new AST(Context, Native.Z3_ast_vector_get(Context.nCtx, NativeObject, i));
}
set
{
- Contract.Requires(value != null);
+ Debug.Assert(value != null);
Native.Z3_ast_vector_set(Context.nCtx, NativeObject, i, value.NativeObject);
}
@@ -73,7 +72,7 @@ namespace Microsoft.Z3
/// An AST
public void Push(AST a)
{
- Contract.Requires(a != null);
+ Debug.Assert(a != null);
Native.Z3_ast_vector_push(Context.nCtx, NativeObject, a.NativeObject);
}
@@ -85,8 +84,7 @@ namespace Microsoft.Z3
/// A new ASTVector
public ASTVector Translate(Context ctx)
{
- Contract.Requires(ctx != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ctx != null);
return new ASTVector(Context, Native.Z3_ast_vector_translate(Context.nCtx, NativeObject, ctx.nCtx));
}
@@ -232,8 +230,8 @@ namespace Microsoft.Z3
}
#region Internal
- internal ASTVector(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
- internal ASTVector(Context ctx) : base(ctx, Native.Z3_mk_ast_vector(ctx.nCtx)) { Contract.Requires(ctx != null); }
+ internal ASTVector(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
+ internal ASTVector(Context ctx) : base(ctx, Native.Z3_mk_ast_vector(ctx.nCtx)) { Debug.Assert(ctx != null); }
internal class DecRefQueue : IDecRefQueue
{
diff --git a/src/api/dotnet/AlgebraicNum.cs b/src/api/dotnet/AlgebraicNum.cs
index 3687e1f83..cd1e4e922 100644
--- a/src/api/dotnet/AlgebraicNum.cs
+++ b/src/api/dotnet/AlgebraicNum.cs
@@ -16,8 +16,8 @@ Author:
Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
#if !FRAMEWORK_LT_4
using System.Numerics;
@@ -28,7 +28,6 @@ namespace Microsoft.Z3
///
/// Algebraic numbers
///
- [ContractVerification(true)]
public class AlgebraicNum : ArithExpr
{
///
@@ -40,7 +39,6 @@ namespace Microsoft.Z3
/// A numeral Expr of sort Real
public RatNum ToUpper(uint precision)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(Context, Native.Z3_get_algebraic_number_upper(Context.nCtx, NativeObject, precision));
}
@@ -54,7 +52,6 @@ namespace Microsoft.Z3
/// A numeral Expr of sort Real
public RatNum ToLower(uint precision)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(Context, Native.Z3_get_algebraic_number_lower(Context.nCtx, NativeObject, precision));
}
@@ -65,7 +62,6 @@ namespace Microsoft.Z3
/// The result has at most decimal places.
public string ToDecimal(uint precision)
{
- Contract.Ensures(Contract.Result() != null);
return Native.Z3_get_numeral_decimal_string(Context.nCtx, NativeObject, precision);
}
@@ -74,7 +70,7 @@ namespace Microsoft.Z3
internal AlgebraicNum(Context ctx, IntPtr obj)
: base(ctx, obj)
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
#endregion
}
diff --git a/src/api/dotnet/ApplyResult.cs b/src/api/dotnet/ApplyResult.cs
index db2922460..342bf3216 100644
--- a/src/api/dotnet/ApplyResult.cs
+++ b/src/api/dotnet/ApplyResult.cs
@@ -17,8 +17,8 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -26,7 +26,6 @@ namespace Microsoft.Z3
/// ApplyResult objects represent the result of an application of a
/// tactic to a goal. It contains the subgoals that were produced.
///
- [ContractVerification(true)]
public class ApplyResult : Z3Object
{
///
@@ -44,8 +43,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
- Contract.Ensures(Contract.Result().Length == this.NumSubgoals);
uint n = NumSubgoals;
Goal[] res = new Goal[n];
@@ -67,7 +64,7 @@ namespace Microsoft.Z3
internal ApplyResult(Context ctx, IntPtr obj)
: base(ctx, obj)
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
internal class DecRefQueue : IDecRefQueue
diff --git a/src/api/dotnet/ArithExpr.cs b/src/api/dotnet/ArithExpr.cs
index b6beaef0c..53b9db21d 100644
--- a/src/api/dotnet/ArithExpr.cs
+++ b/src/api/dotnet/ArithExpr.cs
@@ -16,12 +16,12 @@ Author:
Notes:
--*/
+using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -35,7 +35,7 @@ namespace Microsoft.Z3
internal ArithExpr(Context ctx, IntPtr obj)
: base(ctx, obj)
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
#endregion
@@ -45,7 +45,7 @@ namespace Microsoft.Z3
private static ArithExpr MkNum(ArithExpr e, double d) { return (ArithExpr)e.Context.MkNumeral(d.ToString(), e.Context.MkRealSort()); }
- /// Operator overloading for arithmetical divsion operator (over reals)
+ /// Operator overloading for arithmetical division operator (over reals)
public static ArithExpr operator /(ArithExpr a, ArithExpr b) { return a.Context.MkDiv(a, b); }
/// Operator overloading for arithmetical operator
diff --git a/src/api/dotnet/ArithSort.cs b/src/api/dotnet/ArithSort.cs
index f19774246..985aec7a9 100644
--- a/src/api/dotnet/ArithSort.cs
+++ b/src/api/dotnet/ArithSort.cs
@@ -17,8 +17,8 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -28,7 +28,7 @@ namespace Microsoft.Z3
public class ArithSort : Sort
{
#region Internal
- internal ArithSort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal ArithSort(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
#endregion
};
}
diff --git a/src/api/dotnet/ArrayExpr.cs b/src/api/dotnet/ArrayExpr.cs
index 6c51bfc5b..c53763886 100644
--- a/src/api/dotnet/ArrayExpr.cs
+++ b/src/api/dotnet/ArrayExpr.cs
@@ -16,12 +16,12 @@ Author:
Notes:
--*/
+using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -35,7 +35,7 @@ namespace Microsoft.Z3
internal ArrayExpr(Context ctx, IntPtr obj)
: base(ctx, obj)
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
#endregion
}
diff --git a/src/api/dotnet/ArraySort.cs b/src/api/dotnet/ArraySort.cs
index 47a73ae1f..c5d15938e 100644
--- a/src/api/dotnet/ArraySort.cs
+++ b/src/api/dotnet/ArraySort.cs
@@ -17,15 +17,14 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
///
/// Array sorts.
///
- [ContractVerification(true)]
public class ArraySort : Sort
{
///
@@ -35,7 +34,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
return Sort.Create(Context, Native.Z3_get_array_sort_domain(Context.nCtx, NativeObject));
}
@@ -48,27 +46,26 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
return Sort.Create(Context, Native.Z3_get_array_sort_range(Context.nCtx, NativeObject));
}
}
#region Internal
- internal ArraySort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal ArraySort(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
internal ArraySort(Context ctx, Sort domain, Sort range)
: base(ctx, Native.Z3_mk_array_sort(ctx.nCtx, domain.NativeObject, range.NativeObject))
{
- Contract.Requires(ctx != null);
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
+ Debug.Assert(ctx != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
}
internal ArraySort(Context ctx, Sort[] domain, Sort range)
: base(ctx, Native.Z3_mk_array_sort_n(ctx.nCtx, (uint)domain.Length, AST.ArrayToNative(domain), range.NativeObject))
{
- Contract.Requires(ctx != null);
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
+ Debug.Assert(ctx != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
}
#endregion
};
diff --git a/src/api/dotnet/BitVecExpr.cs b/src/api/dotnet/BitVecExpr.cs
index b019f8845..3efa0e9bd 100644
--- a/src/api/dotnet/BitVecExpr.cs
+++ b/src/api/dotnet/BitVecExpr.cs
@@ -16,12 +16,12 @@ Author:
Notes:
--*/
+using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -41,7 +41,7 @@ namespace Microsoft.Z3
#region Internal
/// Constructor for BitVecExpr
- internal BitVecExpr(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal BitVecExpr(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
#endregion
}
}
diff --git a/src/api/dotnet/BitVecNum.cs b/src/api/dotnet/BitVecNum.cs
index 66054761a..5ee2d2ed8 100644
--- a/src/api/dotnet/BitVecNum.cs
+++ b/src/api/dotnet/BitVecNum.cs
@@ -16,8 +16,8 @@ Author:
Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
#if !FRAMEWORK_LT_4
using System.Numerics;
@@ -28,7 +28,6 @@ namespace Microsoft.Z3
///
/// Bit-vector numerals
///
- [ContractVerification(true)]
public class BitVecNum : BitVecExpr
{
///
@@ -109,7 +108,7 @@ namespace Microsoft.Z3
}
#region Internal
- internal BitVecNum(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal BitVecNum(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
#endregion
}
}
diff --git a/src/api/dotnet/BitVecSort.cs b/src/api/dotnet/BitVecSort.cs
index d865159f4..fb41e76fe 100644
--- a/src/api/dotnet/BitVecSort.cs
+++ b/src/api/dotnet/BitVecSort.cs
@@ -17,8 +17,8 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -36,7 +36,7 @@ namespace Microsoft.Z3
}
#region Internal
- internal BitVecSort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal BitVecSort(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
#endregion
};
}
diff --git a/src/api/dotnet/BoolExpr.cs b/src/api/dotnet/BoolExpr.cs
index c52109352..906090d2a 100644
--- a/src/api/dotnet/BoolExpr.cs
+++ b/src/api/dotnet/BoolExpr.cs
@@ -16,12 +16,12 @@ Author:
Notes:
--*/
+using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -32,7 +32,7 @@ namespace Microsoft.Z3
{
#region Internal
/// Constructor for BoolExpr
- internal BoolExpr(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
+ internal BoolExpr(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
#endregion
#region Operators
diff --git a/src/api/dotnet/BoolSort.cs b/src/api/dotnet/BoolSort.cs
index 50f44c858..7fd6706a3 100644
--- a/src/api/dotnet/BoolSort.cs
+++ b/src/api/dotnet/BoolSort.cs
@@ -17,8 +17,8 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -28,8 +28,8 @@ namespace Microsoft.Z3
public class BoolSort : Sort
{
#region Internal
- internal BoolSort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
- internal BoolSort(Context ctx) : base(ctx, Native.Z3_mk_bool_sort(ctx.nCtx)) { Contract.Requires(ctx != null); }
+ internal BoolSort(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
+ internal BoolSort(Context ctx) : base(ctx, Native.Z3_mk_bool_sort(ctx.nCtx)) { Debug.Assert(ctx != null); }
#endregion
};
}
diff --git a/src/api/dotnet/Constructor.cs b/src/api/dotnet/Constructor.cs
index 527b8bc13..f635d78e4 100644
--- a/src/api/dotnet/Constructor.cs
+++ b/src/api/dotnet/Constructor.cs
@@ -17,15 +17,14 @@ Notes:
--*/
+using System.Diagnostics;
using System;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
///
/// Constructors are used for datatype sorts.
///
- [ContractVerification(true)]
public class Constructor : Z3Object
{
///
@@ -46,7 +45,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
IntPtr constructor = IntPtr.Zero;
IntPtr tester = IntPtr.Zero;
IntPtr[] accessors = new IntPtr[n];
@@ -62,7 +60,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
IntPtr constructor = IntPtr.Zero;
IntPtr tester = IntPtr.Zero;
IntPtr[] accessors = new IntPtr[n];
@@ -78,7 +75,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
IntPtr constructor = IntPtr.Zero;
IntPtr tester = IntPtr.Zero;
IntPtr[] accessors = new IntPtr[n];
@@ -105,9 +101,9 @@ namespace Microsoft.Z3
Sort[] sorts, uint[] sortRefs)
: base(ctx)
{
- Contract.Requires(ctx != null);
- Contract.Requires(name != null);
- Contract.Requires(recognizer != null);
+ Debug.Assert(ctx != null);
+ Debug.Assert(name != null);
+ Debug.Assert(recognizer != null);
n = AST.ArrayLength(fieldNames);
diff --git a/src/api/dotnet/ConstructorList.cs b/src/api/dotnet/ConstructorList.cs
index d625b5ade..9b9ba8561 100644
--- a/src/api/dotnet/ConstructorList.cs
+++ b/src/api/dotnet/ConstructorList.cs
@@ -17,12 +17,12 @@ Notes:
--*/
+using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
-using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
@@ -43,14 +43,14 @@ namespace Microsoft.Z3
internal ConstructorList(Context ctx, IntPtr obj)
: base(ctx, obj)
{
- Contract.Requires(ctx != null);
+ Debug.Assert(ctx != null);
}
internal ConstructorList(Context ctx, Constructor[] constructors)
: base(ctx)
{
- Contract.Requires(ctx != null);
- Contract.Requires(constructors != null);
+ Debug.Assert(ctx != null);
+ Debug.Assert(constructors != null);
NativeObject = Native.Z3_mk_constructor_list(Context.nCtx, (uint)constructors.Length, Constructor.ArrayToNative(constructors));
}
diff --git a/src/api/dotnet/Context.cs b/src/api/dotnet/Context.cs
index c8decb59b..cdaae332b 100644
--- a/src/api/dotnet/Context.cs
+++ b/src/api/dotnet/Context.cs
@@ -18,9 +18,9 @@ Notes:
--*/
using System;
+using System.Diagnostics;
using System.Collections.Generic;
using System.Runtime.InteropServices;
-using System.Diagnostics.Contracts;
using System.Linq;
namespace Microsoft.Z3
@@ -28,7 +28,6 @@ namespace Microsoft.Z3
///
/// The main interaction with Z3 happens via the Context.
///
- [ContractVerification(true)]
public class Context : IDisposable
{
#region Constructors
@@ -66,7 +65,7 @@ namespace Microsoft.Z3
public Context(Dictionary settings)
: base()
{
- Contract.Requires(settings != null);
+ Debug.Assert(settings != null);
lock (creation_lock)
{
@@ -90,7 +89,6 @@ namespace Microsoft.Z3
///
public IntSymbol MkSymbol(int i)
{
- Contract.Ensures(Contract.Result() != null);
return new IntSymbol(this, i);
}
@@ -100,7 +98,6 @@ namespace Microsoft.Z3
///
public StringSymbol MkSymbol(string name)
{
- Contract.Ensures(Contract.Result() != null);
return new StringSymbol(this, name);
}
@@ -110,10 +107,6 @@ namespace Microsoft.Z3
///
internal Symbol[] MkSymbols(string[] names)
{
- Contract.Ensures(names == null || Contract.Result() != null);
- Contract.Ensures(names != null || Contract.Result() == null);
- Contract.Ensures(Contract.Result() == null || Contract.Result().Length == names.Length);
- Contract.Ensures(Contract.Result() == null || Contract.ForAll(Contract.Result(), s => s != null));
if (names == null) return null;
Symbol[] result = new Symbol[names.Length];
@@ -135,7 +128,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
if (m_boolSort == null) m_boolSort = new BoolSort(this); return m_boolSort;
}
}
@@ -147,7 +139,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
if (m_intSort == null) m_intSort = new IntSort(this); return m_intSort;
}
}
@@ -160,7 +151,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
if (m_realSort == null) m_realSort = new RealSort(this); return m_realSort;
}
}
@@ -172,7 +162,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
if (m_stringSort == null) m_stringSort = new SeqSort(this, Native.Z3_mk_string_sort(nCtx));
return m_stringSort;
}
@@ -184,7 +173,6 @@ namespace Microsoft.Z3
///
public BoolSort MkBoolSort()
{
- Contract.Ensures(Contract.Result() != null);
return new BoolSort(this);
}
@@ -193,8 +181,7 @@ namespace Microsoft.Z3
///
public UninterpretedSort MkUninterpretedSort(Symbol s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
CheckContextMatch(s);
return new UninterpretedSort(this, s);
@@ -205,7 +192,6 @@ namespace Microsoft.Z3
///
public UninterpretedSort MkUninterpretedSort(string str)
{
- Contract.Ensures(Contract.Result() != null);
return MkUninterpretedSort(MkSymbol(str));
}
@@ -215,7 +201,6 @@ namespace Microsoft.Z3
///
public IntSort MkIntSort()
{
- Contract.Ensures(Contract.Result() != null);
return new IntSort(this);
}
@@ -225,7 +210,6 @@ namespace Microsoft.Z3
///
public RealSort MkRealSort()
{
- Contract.Ensures(Contract.Result() != null);
return new RealSort(this);
}
@@ -234,7 +218,6 @@ namespace Microsoft.Z3
///
public BitVecSort MkBitVecSort(uint size)
{
- Contract.Ensures(Contract.Result() != null);
return new BitVecSort(this, Native.Z3_mk_bv_sort(nCtx, size));
}
@@ -245,8 +228,7 @@ namespace Microsoft.Z3
///
public SeqSort MkSeqSort(Sort s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new SeqSort(this, Native.Z3_mk_seq_sort(nCtx, s.NativeObject));
}
@@ -255,8 +237,7 @@ namespace Microsoft.Z3
///
public ReSort MkReSort(SeqSort s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new ReSort(this, Native.Z3_mk_re_sort(nCtx, s.NativeObject));
}
@@ -265,9 +246,8 @@ namespace Microsoft.Z3
///
public ArraySort MkArraySort(Sort domain, Sort range)
{
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
CheckContextMatch(domain);
CheckContextMatch(range);
@@ -279,9 +259,8 @@ namespace Microsoft.Z3
///
public ArraySort MkArraySort(Sort[] domain, Sort range)
{
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
CheckContextMatch(domain);
CheckContextMatch(range);
@@ -293,11 +272,10 @@ namespace Microsoft.Z3
///
public TupleSort MkTupleSort(Symbol name, Symbol[] fieldNames, Sort[] fieldSorts)
{
- Contract.Requires(name != null);
- Contract.Requires(fieldNames != null);
- Contract.Requires(Contract.ForAll(fieldNames, fn => fn != null));
- Contract.Requires(fieldSorts == null || Contract.ForAll(fieldSorts, fs => fs != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(fieldNames != null);
+ Debug.Assert(fieldNames.All(fn => fn != null));
+ Debug.Assert(fieldSorts == null || fieldSorts.All(fs => fs != null));
CheckContextMatch(name);
CheckContextMatch(fieldNames);
@@ -310,11 +288,10 @@ namespace Microsoft.Z3
///
public EnumSort MkEnumSort(Symbol name, params Symbol[] enumNames)
{
- Contract.Requires(name != null);
- Contract.Requires(enumNames != null);
- Contract.Requires(Contract.ForAll(enumNames, f => f != null));
+ Debug.Assert(name != null);
+ Debug.Assert(enumNames != null);
+ Debug.Assert(enumNames.All(f => f != null));
- Contract.Ensures(Contract.Result() != null);
CheckContextMatch(name);
CheckContextMatch(enumNames);
@@ -326,8 +303,7 @@ namespace Microsoft.Z3
///
public EnumSort MkEnumSort(string name, params string[] enumNames)
{
- Contract.Requires(enumNames != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(enumNames != null);
return new EnumSort(this, MkSymbol(name), MkSymbols(enumNames));
}
@@ -337,9 +313,8 @@ namespace Microsoft.Z3
///
public ListSort MkListSort(Symbol name, Sort elemSort)
{
- Contract.Requires(name != null);
- Contract.Requires(elemSort != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(elemSort != null);
CheckContextMatch(name);
CheckContextMatch(elemSort);
@@ -351,8 +326,7 @@ namespace Microsoft.Z3
///
public ListSort MkListSort(string name, Sort elemSort)
{
- Contract.Requires(elemSort != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(elemSort != null);
CheckContextMatch(elemSort);
return new ListSort(this, MkSymbol(name), elemSort);
@@ -366,8 +340,7 @@ namespace Microsoft.Z3
/// The size of the sort
public FiniteDomainSort MkFiniteDomainSort(Symbol name, ulong size)
{
- Contract.Requires(name != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
CheckContextMatch(name);
return new FiniteDomainSort(this, name, size);
@@ -383,7 +356,6 @@ namespace Microsoft.Z3
/// The size of the sort
public FiniteDomainSort MkFiniteDomainSort(string name, ulong size)
{
- Contract.Ensures(Contract.Result() != null);
return new FiniteDomainSort(this, MkSymbol(name), size);
}
@@ -402,9 +374,8 @@ namespace Microsoft.Z3
/// referring to one of the recursive datatypes that is declared.
public Constructor MkConstructor(Symbol name, Symbol recognizer, Symbol[] fieldNames = null, Sort[] sorts = null, uint[] sortRefs = null)
{
- Contract.Requires(name != null);
- Contract.Requires(recognizer != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(recognizer != null);
return new Constructor(this, name, recognizer, fieldNames, sorts, sortRefs);
}
@@ -420,7 +391,6 @@ namespace Microsoft.Z3
///
public Constructor MkConstructor(string name, string recognizer, string[] fieldNames = null, Sort[] sorts = null, uint[] sortRefs = null)
{
- Contract.Ensures(Contract.Result() != null);
return new Constructor(this, MkSymbol(name), MkSymbol(recognizer), MkSymbols(fieldNames), sorts, sortRefs);
}
@@ -430,11 +400,10 @@ namespace Microsoft.Z3
///
public DatatypeSort MkDatatypeSort(Symbol name, Constructor[] constructors)
{
- Contract.Requires(name != null);
- Contract.Requires(constructors != null);
- Contract.Requires(Contract.ForAll(constructors, c => c != null));
+ Debug.Assert(name != null);
+ Debug.Assert(constructors != null);
+ Debug.Assert(constructors.All(c => c != null));
- Contract.Ensures(Contract.Result() != null);
CheckContextMatch(name);
CheckContextMatch(constructors);
@@ -446,9 +415,8 @@ namespace Microsoft.Z3
///
public DatatypeSort MkDatatypeSort(string name, Constructor[] constructors)
{
- Contract.Requires(constructors != null);
- Contract.Requires(Contract.ForAll(constructors, c => c != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(constructors != null);
+ Debug.Assert(constructors.All(c => c != null));
CheckContextMatch(constructors);
return new DatatypeSort(this, MkSymbol(name), constructors);
@@ -461,12 +429,11 @@ namespace Microsoft.Z3
/// list of constructors, one list per sort.
public DatatypeSort[] MkDatatypeSorts(Symbol[] names, Constructor[][] c)
{
- Contract.Requires(names != null);
- Contract.Requires(c != null);
- Contract.Requires(names.Length == c.Length);
- Contract.Requires(Contract.ForAll(0, c.Length, j => c[j] != null));
- Contract.Requires(Contract.ForAll(names, name => name != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(names != null);
+ Debug.Assert(c != null);
+ Debug.Assert(names.Length == c.Length);
+ //Debug.Assert(Contract.ForAll(0, c.Length, j => c[j] != null));
+ Debug.Assert(names.All(name => name != null));
CheckContextMatch(names);
uint n = (uint)names.Length;
@@ -475,7 +442,6 @@ namespace Microsoft.Z3
for (uint i = 0; i < n; i++)
{
Constructor[] constructor = c[i];
- Contract.Assume(Contract.ForAll(constructor, arr => arr != null), "Clousot does not support yet quantified formula on multidimensional arrays");
CheckContextMatch(constructor);
cla[i] = new ConstructorList(this, constructor);
n_constr[i] = cla[i].NativeObject;
@@ -496,12 +462,11 @@ namespace Microsoft.Z3
///
public DatatypeSort[] MkDatatypeSorts(string[] names, Constructor[][] c)
{
- Contract.Requires(names != null);
- Contract.Requires(c != null);
- Contract.Requires(names.Length == c.Length);
- Contract.Requires(Contract.ForAll(0, c.Length, j => c[j] != null));
- Contract.Requires(Contract.ForAll(names, name => name != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(names != null);
+ Debug.Assert(c != null);
+ Debug.Assert(names.Length == c.Length);
+ //Debug.Assert(Contract.ForAll(0, c.Length, j => c[j] != null));
+ //Debug.Assert(names.All(name => name != null));
return MkDatatypeSorts(MkSymbols(names), c);
}
@@ -510,7 +475,7 @@ namespace Microsoft.Z3
/// Update a datatype field at expression t with value v.
/// The function performs a record update at t. The field
/// that is passed in as argument is updated with value v,
- /// the remainig fields of t are unchanged.
+ /// the remaining fields of t are unchanged.
///
public Expr MkUpdateField(FuncDecl field, Expr t, Expr v)
{
@@ -528,10 +493,9 @@ namespace Microsoft.Z3
///
public FuncDecl MkFuncDecl(Symbol name, Sort[] domain, Sort range)
{
- Contract.Requires(name != null);
- Contract.Requires(range != null);
- Contract.Requires(Contract.ForAll(domain, d => d != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(range != null);
+ Debug.Assert(domain.All(d => d != null));
CheckContextMatch(name);
CheckContextMatch(domain);
@@ -544,10 +508,9 @@ namespace Microsoft.Z3
///
public FuncDecl MkFuncDecl(Symbol name, Sort domain, Sort range)
{
- Contract.Requires(name != null);
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
CheckContextMatch(name);
CheckContextMatch(domain);
@@ -561,23 +524,49 @@ namespace Microsoft.Z3
///
public FuncDecl MkFuncDecl(string name, Sort[] domain, Sort range)
{
- Contract.Requires(range != null);
- Contract.Requires(Contract.ForAll(domain, d => d != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
+ Debug.Assert(domain.All(d => d != null));
CheckContextMatch(domain);
CheckContextMatch(range);
return new FuncDecl(this, MkSymbol(name), domain, range);
}
+ ///
+ /// Creates a new recursive function declaration.
+ ///
+ public FuncDecl MkRecFuncDecl(string name, Sort[] domain, Sort range)
+ {
+ Debug.Assert(range != null);
+ Debug.Assert(domain.All(d => d != null));
+
+ CheckContextMatch(domain);
+ CheckContextMatch(range);
+ return new FuncDecl(this, MkSymbol(name), domain, range, true);
+ }
+
+ ///
+ /// Bind a definition to a recursive function declaration.
+ /// The function must have previously been created using
+ /// MkRecFuncDecl. The body may contain recursive uses of the function or
+ /// other mutually recursive functions.
+ ///
+ public void AddRecDef(FuncDecl f, Expr[] args, Expr body)
+ {
+ CheckContextMatch(f);
+ CheckContextMatch(args);
+ CheckContextMatch(body);
+ IntPtr[] argsNative = AST.ArrayToNative(args);
+ Native.Z3_add_rec_def(nCtx, f.NativeObject, (uint)args.Length, argsNative, body.NativeObject);
+ }
+
///
/// Creates a new function declaration.
///
public FuncDecl MkFuncDecl(string name, Sort domain, Sort range)
{
- Contract.Requires(range != null);
- Contract.Requires(domain != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
+ Debug.Assert(domain != null);
CheckContextMatch(domain);
CheckContextMatch(range);
@@ -592,9 +581,8 @@ namespace Microsoft.Z3
///
public FuncDecl MkFreshFuncDecl(string prefix, Sort[] domain, Sort range)
{
- Contract.Requires(range != null);
- Contract.Requires(Contract.ForAll(domain, d => d != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
+ Debug.Assert(domain.All(d => d != null));
CheckContextMatch(domain);
CheckContextMatch(range);
@@ -606,9 +594,8 @@ namespace Microsoft.Z3
///
public FuncDecl MkConstDecl(Symbol name, Sort range)
{
- Contract.Requires(name != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(range != null);
CheckContextMatch(name);
CheckContextMatch(range);
@@ -620,8 +607,7 @@ namespace Microsoft.Z3
///
public FuncDecl MkConstDecl(string name, Sort range)
{
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
CheckContextMatch(range);
return new FuncDecl(this, MkSymbol(name), null, range);
@@ -634,8 +620,7 @@ namespace Microsoft.Z3
///
public FuncDecl MkFreshConstDecl(string prefix, Sort range)
{
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
CheckContextMatch(range);
return new FuncDecl(this, prefix, null, range);
@@ -650,8 +635,7 @@ namespace Microsoft.Z3
/// The sort of the variable
public Expr MkBound(uint index, Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
return Expr.Create(this, Native.Z3_mk_bound(nCtx, index, ty.NativeObject));
}
@@ -663,14 +647,10 @@ namespace Microsoft.Z3
///
public Pattern MkPattern(params Expr[] terms)
{
- Contract.Requires(terms != null);
+ Debug.Assert(terms != null);
if (terms.Length == 0)
throw new Z3Exception("Cannot create a pattern from zero terms");
- Contract.Ensures(Contract.Result() != null);
-
- Contract.EndContractBlock();
-
IntPtr[] termsNative = AST.ArrayToNative(terms);
return new Pattern(this, Native.Z3_mk_pattern(nCtx, (uint)terms.Length, termsNative));
}
@@ -682,9 +662,8 @@ namespace Microsoft.Z3
///
public Expr MkConst(Symbol name, Sort range)
{
- Contract.Requires(name != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(range != null);
CheckContextMatch(name);
CheckContextMatch(range);
@@ -697,8 +676,7 @@ namespace Microsoft.Z3
///
public Expr MkConst(string name, Sort range)
{
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
return MkConst(MkSymbol(name), range);
}
@@ -709,8 +687,7 @@ namespace Microsoft.Z3
///
public Expr MkFreshConst(string prefix, Sort range)
{
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(range != null);
CheckContextMatch(range);
return Expr.Create(this, Native.Z3_mk_fresh_const(nCtx, prefix, range.NativeObject));
@@ -722,8 +699,7 @@ namespace Microsoft.Z3
/// A decl of a 0-arity function
public Expr MkConst(FuncDecl f)
{
- Contract.Requires(f != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(f != null);
return MkApp(f);
}
@@ -733,8 +709,7 @@ namespace Microsoft.Z3
///
public BoolExpr MkBoolConst(Symbol name)
{
- Contract.Requires(name != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
return (BoolExpr)MkConst(name, BoolSort);
}
@@ -744,7 +719,6 @@ namespace Microsoft.Z3
///
public BoolExpr MkBoolConst(string name)
{
- Contract.Ensures(Contract.Result() != null);
return (BoolExpr)MkConst(MkSymbol(name), BoolSort);
}
@@ -754,8 +728,7 @@ namespace Microsoft.Z3
///
public IntExpr MkIntConst(Symbol name)
{
- Contract.Requires(name != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
return (IntExpr)MkConst(name, IntSort);
}
@@ -765,8 +738,7 @@ namespace Microsoft.Z3
///
public IntExpr MkIntConst(string name)
{
- Contract.Requires(name != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
return (IntExpr)MkConst(name, IntSort);
}
@@ -776,8 +748,7 @@ namespace Microsoft.Z3
///
public RealExpr MkRealConst(Symbol name)
{
- Contract.Requires(name != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
return (RealExpr)MkConst(name, RealSort);
}
@@ -787,7 +758,6 @@ namespace Microsoft.Z3
///
public RealExpr MkRealConst(string name)
{
- Contract.Ensures(Contract.Result() != null);
return (RealExpr)MkConst(name, RealSort);
}
@@ -797,8 +767,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVConst(Symbol name, uint size)
{
- Contract.Requires(name != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
return (BitVecExpr)MkConst(name, MkBitVecSort(size));
}
@@ -808,7 +777,6 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVConst(string name, uint size)
{
- Contract.Ensures(Contract.Result() != null);
return (BitVecExpr)MkConst(name, MkBitVecSort(size));
}
@@ -820,9 +788,8 @@ namespace Microsoft.Z3
///
public Expr MkApp(FuncDecl f, params Expr[] args)
{
- Contract.Requires(f != null);
- Contract.Requires(args == null || Contract.ForAll(args, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(f != null);
+ Debug.Assert(args == null || args.All(a => a != null));
CheckContextMatch(f);
CheckContextMatch(args);
@@ -834,9 +801,8 @@ namespace Microsoft.Z3
///
public Expr MkApp(FuncDecl f, IEnumerable args)
{
- Contract.Requires(f != null);
- Contract.Requires(args == null || Contract.ForAll(args, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(f != null);
+ Debug.Assert(args == null || args.All( a => a != null));
CheckContextMatch(f);
CheckContextMatch(args);
@@ -849,7 +815,6 @@ namespace Microsoft.Z3
///
public BoolExpr MkTrue()
{
- Contract.Ensures(Contract.Result() != null);
return new BoolExpr(this, Native.Z3_mk_true(nCtx));
}
@@ -859,7 +824,6 @@ namespace Microsoft.Z3
///
public BoolExpr MkFalse()
{
- Contract.Ensures(Contract.Result() != null);
return new BoolExpr(this, Native.Z3_mk_false(nCtx));
}
@@ -869,7 +833,6 @@ namespace Microsoft.Z3
///
public BoolExpr MkBool(bool value)
{
- Contract.Ensures(Contract.Result() != null);
return value ? MkTrue() : MkFalse();
}
@@ -879,9 +842,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkEq(Expr x, Expr y)
{
- Contract.Requires(x != null);
- Contract.Requires(y != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(x != null);
+ Debug.Assert(y != null);
CheckContextMatch(x);
CheckContextMatch(y);
@@ -893,10 +855,9 @@ namespace Microsoft.Z3
///
public BoolExpr MkDistinct(params Expr[] args)
{
- Contract.Requires(args != null);
- Contract.Requires(Contract.ForAll(args, a => a != null));
+ Debug.Assert(args != null);
+ Debug.Assert(args.All(a => a != null));
- Contract.Ensures(Contract.Result() != null);
CheckContextMatch(args);
return new BoolExpr(this, Native.Z3_mk_distinct(nCtx, (uint)args.Length, AST.ArrayToNative(args)));
@@ -907,8 +868,7 @@ namespace Microsoft.Z3
///
public BoolExpr MkNot(BoolExpr a)
{
- Contract.Requires(a != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(a != null);
CheckContextMatch(a);
return new BoolExpr(this, Native.Z3_mk_not(nCtx, a.NativeObject));
@@ -922,10 +882,9 @@ namespace Microsoft.Z3
/// An expression with the same sort as
public Expr MkITE(BoolExpr t1, Expr t2, Expr t3)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Requires(t3 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
+ Debug.Assert(t3 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -938,9 +897,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkIff(BoolExpr t1, BoolExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -952,9 +910,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkImplies(BoolExpr t1, BoolExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -966,23 +923,41 @@ namespace Microsoft.Z3
///
public BoolExpr MkXor(BoolExpr t1, BoolExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
return new BoolExpr(this, Native.Z3_mk_xor(nCtx, t1.NativeObject, t2.NativeObject));
}
+ ///
+ /// Create an expression representing t1 xor t2 xor t3 ... .
+ ///
+ public BoolExpr MkXor(IEnumerable ts)
+ {
+ Debug.Assert(ts != null);
+ Debug.Assert(ts.All(a => a != null));
+ CheckContextMatch(ts);
+ BoolExpr r = null;
+ foreach (var t in ts) {
+ if (r == null)
+ r = t;
+ else
+ r = MkXor(r, t);
+ }
+ if (r == null)
+ r = MkTrue();
+ return r;
+ }
+
///
/// Create an expression representing t[0] and t[1] and ....
///
public BoolExpr MkAnd(params BoolExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new BoolExpr(this, Native.Z3_mk_and(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -993,9 +968,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkAnd(IEnumerable t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new BoolExpr(this, Native.Z3_mk_and(nCtx, (uint)t.Count(), AST.EnumToNative(t)));
}
@@ -1005,9 +979,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkOr(params BoolExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new BoolExpr(this, Native.Z3_mk_or(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -1019,9 +992,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkOr(IEnumerable t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new BoolExpr(this, Native.Z3_mk_or(nCtx, (uint)t.Count(), AST.EnumToNative(t)));
@@ -1035,9 +1007,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkAdd(params ArithExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return (ArithExpr)Expr.Create(this, Native.Z3_mk_add(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -1048,9 +1019,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkAdd(IEnumerable t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return (ArithExpr)Expr.Create(this, Native.Z3_mk_add(nCtx, (uint)t.Count(), AST.EnumToNative(t)));
@@ -1061,9 +1031,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkMul(params ArithExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return (ArithExpr)Expr.Create(this, Native.Z3_mk_mul(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -1074,9 +1043,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkMul(IEnumerable t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return (ArithExpr)Expr.Create(this, Native.Z3_mk_mul(nCtx, (uint)t.Count(), AST.EnumToNative(t)));
@@ -1087,9 +1055,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkSub(params ArithExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return (ArithExpr)Expr.Create(this, Native.Z3_mk_sub(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -1100,8 +1067,7 @@ namespace Microsoft.Z3
///
public ArithExpr MkUnaryMinus(ArithExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return (ArithExpr)Expr.Create(this, Native.Z3_mk_unary_minus(nCtx, t.NativeObject));
@@ -1112,9 +1078,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkDiv(ArithExpr t1, ArithExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1127,9 +1092,8 @@ namespace Microsoft.Z3
/// The arguments must have int type.
public IntExpr MkMod(IntExpr t1, IntExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1142,9 +1106,8 @@ namespace Microsoft.Z3
/// The arguments must have int type.
public IntExpr MkRem(IntExpr t1, IntExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1156,9 +1119,8 @@ namespace Microsoft.Z3
///
public ArithExpr MkPower(ArithExpr t1, ArithExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1170,9 +1132,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkLt(ArithExpr t1, ArithExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1184,9 +1145,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkLe(ArithExpr t1, ArithExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1198,9 +1158,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkGt(ArithExpr t1, ArithExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1212,9 +1171,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkGe(ArithExpr t1, ArithExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1233,8 +1191,7 @@ namespace Microsoft.Z3
///
public RealExpr MkInt2Real(IntExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new RealExpr(this, Native.Z3_mk_int2real(nCtx, t.NativeObject));
@@ -1249,8 +1206,7 @@ namespace Microsoft.Z3
///
public IntExpr MkReal2Int(RealExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new IntExpr(this, Native.Z3_mk_real2int(nCtx, t.NativeObject));
@@ -1261,8 +1217,7 @@ namespace Microsoft.Z3
///
public BoolExpr MkIsInteger(RealExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BoolExpr(this, Native.Z3_mk_is_int(nCtx, t.NativeObject));
@@ -1276,8 +1231,7 @@ namespace Microsoft.Z3
/// The argument must have a bit-vector sort.
public BitVecExpr MkBVNot(BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_bvnot(nCtx, t.NativeObject));
@@ -1289,8 +1243,7 @@ namespace Microsoft.Z3
/// The argument must have a bit-vector sort.
public BitVecExpr MkBVRedAND(BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_bvredand(nCtx, t.NativeObject));
@@ -1302,8 +1255,7 @@ namespace Microsoft.Z3
/// The argument must have a bit-vector sort.
public BitVecExpr MkBVRedOR(BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_bvredor(nCtx, t.NativeObject));
@@ -1315,9 +1267,8 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVAND(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1330,9 +1281,8 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVOR(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1345,9 +1295,8 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVXOR(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1360,9 +1309,8 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVNAND(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1375,9 +1323,8 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVNOR(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1390,9 +1337,8 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVXNOR(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1405,8 +1351,7 @@ namespace Microsoft.Z3
/// The arguments must have a bit-vector sort.
public BitVecExpr MkBVNeg(BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_bvneg(nCtx, t.NativeObject));
@@ -1418,9 +1363,8 @@ namespace Microsoft.Z3
/// The arguments must have the same bit-vector sort.
public BitVecExpr MkBVAdd(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1433,9 +1377,8 @@ namespace Microsoft.Z3
/// The arguments must have the same bit-vector sort.
public BitVecExpr MkBVSub(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1448,9 +1391,8 @@ namespace Microsoft.Z3
/// The arguments must have the same bit-vector sort.
public BitVecExpr MkBVMul(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1468,9 +1410,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVUDiv(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1492,9 +1433,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVSDiv(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1511,9 +1451,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVURem(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1532,9 +1471,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVSRem(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1550,9 +1488,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVSMod(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1567,9 +1504,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVULT(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1584,9 +1520,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSLT(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1601,9 +1536,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVULE(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1618,9 +1552,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSLE(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1635,9 +1568,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVUGE(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1652,9 +1584,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSGE(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1669,9 +1600,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVUGT(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1686,9 +1616,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSGT(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1707,9 +1636,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkConcat(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1727,8 +1655,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkExtract(uint high, uint low, BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_extract(nCtx, high, low, t.NativeObject));
@@ -1744,8 +1671,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkSignExt(uint i, BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_sign_ext(nCtx, i, t.NativeObject));
@@ -1762,8 +1688,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkZeroExt(uint i, BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_zero_ext(nCtx, i, t.NativeObject));
@@ -1777,8 +1702,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkRepeat(uint i, BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_repeat(nCtx, i, t.NativeObject));
@@ -1798,9 +1722,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVSHL(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1821,9 +1744,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVLSHR(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1846,9 +1768,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVASHR(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1864,8 +1785,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVRotateLeft(uint i, BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_rotate_left(nCtx, i, t.NativeObject));
@@ -1880,8 +1800,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVRotateRight(uint i, BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_rotate_right(nCtx, i, t.NativeObject));
@@ -1896,9 +1815,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVRotateLeft(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1914,9 +1832,8 @@ namespace Microsoft.Z3
///
public BitVecExpr MkBVRotateRight(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1935,8 +1852,7 @@ namespace Microsoft.Z3
///
public BitVecExpr MkInt2BV(uint n, IntExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BitVecExpr(this, Native.Z3_mk_int2bv(nCtx, n, t.NativeObject));
@@ -1959,8 +1875,7 @@ namespace Microsoft.Z3
///
public IntExpr MkBV2Int(BitVecExpr t, bool signed)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new IntExpr(this, Native.Z3_mk_bv2int(nCtx, t.NativeObject, (byte)(signed ? 1 : 0)));
@@ -1974,9 +1889,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVAddNoOverflow(BitVecExpr t1, BitVecExpr t2, bool isSigned)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -1991,9 +1905,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVAddNoUnderflow(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -2008,9 +1921,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSubNoOverflow(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -2025,9 +1937,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSubNoUnderflow(BitVecExpr t1, BitVecExpr t2, bool isSigned)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -2042,9 +1953,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVSDivNoOverflow(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -2059,8 +1969,7 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVNegNoOverflow(BitVecExpr t)
{
- Contract.Requires(t != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
CheckContextMatch(t);
return new BoolExpr(this, Native.Z3_mk_bvneg_no_overflow(nCtx, t.NativeObject));
@@ -2074,9 +1983,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVMulNoOverflow(BitVecExpr t1, BitVecExpr t2, bool isSigned)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -2091,9 +1999,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkBVMulNoUnderflow(BitVecExpr t1, BitVecExpr t2)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t1 != null);
+ Debug.Assert(t2 != null);
CheckContextMatch(t1);
CheckContextMatch(t2);
@@ -2107,10 +2014,9 @@ namespace Microsoft.Z3
///
public ArrayExpr MkArrayConst(Symbol name, Sort domain, Sort range)
{
- Contract.Requires(name != null);
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(name != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
return (ArrayExpr)MkConst(name, MkArraySort(domain, range));
}
@@ -2120,9 +2026,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkArrayConst(string name, Sort domain, Sort range)
{
- Contract.Requires(domain != null);
- Contract.Requires(range != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(range != null);
return (ArrayExpr)MkConst(MkSymbol(name), MkArraySort(domain, range));
}
@@ -2143,9 +2048,8 @@ namespace Microsoft.Z3
///
public Expr MkSelect(ArrayExpr a, Expr i)
{
- Contract.Requires(a != null);
- Contract.Requires(i != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(a != null);
+ Debug.Assert(i != null);
CheckContextMatch(a);
CheckContextMatch(i);
@@ -2167,9 +2071,8 @@ namespace Microsoft.Z3
///
public Expr MkSelect(ArrayExpr a, params Expr[] args)
{
- Contract.Requires(a != null);
- Contract.Requires(args != null && Contract.ForAll(args, n => n != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(a != null);
+ Debug.Assert(args != null && args.All(n => n != null));
CheckContextMatch(a);
CheckContextMatch(args);
@@ -2196,10 +2099,9 @@ namespace Microsoft.Z3
///
public ArrayExpr MkStore(ArrayExpr a, Expr i, Expr v)
{
- Contract.Requires(a != null);
- Contract.Requires(i != null);
- Contract.Requires(v != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(a != null);
+ Debug.Assert(i != null);
+ Debug.Assert(v != null);
CheckContextMatch(a);
CheckContextMatch(i);
@@ -2227,10 +2129,9 @@ namespace Microsoft.Z3
///
public ArrayExpr MkStore(ArrayExpr a, Expr[] args, Expr v)
{
- Contract.Requires(a != null);
- Contract.Requires(args != null);
- Contract.Requires(v != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(a != null);
+ Debug.Assert(args != null);
+ Debug.Assert(v != null);
CheckContextMatch(args);
CheckContextMatch(a);
@@ -2249,9 +2150,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkConstArray(Sort domain, Expr v)
{
- Contract.Requires(domain != null);
- Contract.Requires(v != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(domain != null);
+ Debug.Assert(v != null);
CheckContextMatch(domain);
CheckContextMatch(v);
@@ -2271,9 +2171,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkMap(FuncDecl f, params ArrayExpr[] args)
{
- Contract.Requires(f != null);
- Contract.Requires(args == null || Contract.ForAll(args, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(f != null);
+ Debug.Assert(args == null || args.All(a => a != null));
CheckContextMatch(f);
CheckContextMatch(args);
@@ -2289,8 +2188,7 @@ namespace Microsoft.Z3
///
public Expr MkTermArray(ArrayExpr array)
{
- Contract.Requires(array != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(array != null);
CheckContextMatch(array);
return Expr.Create(this, Native.Z3_mk_array_default(nCtx, array.NativeObject));
@@ -2301,9 +2199,8 @@ namespace Microsoft.Z3
///
public Expr MkArrayExt(ArrayExpr arg1, ArrayExpr arg2)
{
- Contract.Requires(arg1 != null);
- Contract.Requires(arg2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(arg1 != null);
+ Debug.Assert(arg2 != null);
CheckContextMatch(arg1);
CheckContextMatch(arg2);
@@ -2318,8 +2215,7 @@ namespace Microsoft.Z3
///
public SetSort MkSetSort(Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
CheckContextMatch(ty);
return new SetSort(this, ty);
@@ -2330,8 +2226,7 @@ namespace Microsoft.Z3
///
public ArrayExpr MkEmptySet(Sort domain)
{
- Contract.Requires(domain != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(domain != null);
CheckContextMatch(domain);
return (ArrayExpr)Expr.Create(this, Native.Z3_mk_empty_set(nCtx, domain.NativeObject));
@@ -2342,8 +2237,7 @@ namespace Microsoft.Z3
///
public ArrayExpr MkFullSet(Sort domain)
{
- Contract.Requires(domain != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(domain != null);
CheckContextMatch(domain);
return (ArrayExpr)Expr.Create(this, Native.Z3_mk_full_set(nCtx, domain.NativeObject));
@@ -2354,9 +2248,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkSetAdd(ArrayExpr set, Expr element)
{
- Contract.Requires(set != null);
- Contract.Requires(element != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(set != null);
+ Debug.Assert(element != null);
CheckContextMatch(set);
CheckContextMatch(element);
@@ -2369,9 +2262,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkSetDel(ArrayExpr set, Expr element)
{
- Contract.Requires(set != null);
- Contract.Requires(element != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(set != null);
+ Debug.Assert(element != null);
CheckContextMatch(set);
CheckContextMatch(element);
@@ -2383,8 +2275,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkSetUnion(params ArrayExpr[] args)
{
- Contract.Requires(args != null);
- Contract.Requires(Contract.ForAll(args, a => a != null));
+ Debug.Assert(args != null);
+ Debug.Assert(args.All(a => a != null));
CheckContextMatch(args);
return (ArrayExpr)Expr.Create(this, Native.Z3_mk_set_union(nCtx, (uint)args.Length, AST.ArrayToNative(args)));
@@ -2395,9 +2287,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkSetIntersection(params ArrayExpr[] args)
{
- Contract.Requires(args != null);
- Contract.Requires(Contract.ForAll(args, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(args != null);
+ Debug.Assert(args.All(a => a != null));
CheckContextMatch(args);
return (ArrayExpr)Expr.Create(this, Native.Z3_mk_set_intersect(nCtx, (uint)args.Length, AST.ArrayToNative(args)));
@@ -2408,9 +2299,8 @@ namespace Microsoft.Z3
///
public ArrayExpr MkSetDifference(ArrayExpr arg1, ArrayExpr arg2)
{
- Contract.Requires(arg1 != null);
- Contract.Requires(arg2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(arg1 != null);
+ Debug.Assert(arg2 != null);
CheckContextMatch(arg1);
CheckContextMatch(arg2);
@@ -2422,8 +2312,7 @@ namespace Microsoft.Z3
///
public ArrayExpr MkSetComplement(ArrayExpr arg)
{
- Contract.Requires(arg != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(arg != null);
CheckContextMatch(arg);
return (ArrayExpr)Expr.Create(this, Native.Z3_mk_set_complement(nCtx, arg.NativeObject));
@@ -2434,9 +2323,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkSetMembership(Expr elem, ArrayExpr set)
{
- Contract.Requires(elem != null);
- Contract.Requires(set != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(elem != null);
+ Debug.Assert(set != null);
CheckContextMatch(elem);
CheckContextMatch(set);
@@ -2448,9 +2336,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkSetSubset(ArrayExpr arg1, ArrayExpr arg2)
{
- Contract.Requires(arg1 != null);
- Contract.Requires(arg2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(arg1 != null);
+ Debug.Assert(arg2 != null);
CheckContextMatch(arg1);
CheckContextMatch(arg2);
@@ -2459,15 +2346,14 @@ namespace Microsoft.Z3
#endregion
- #region Sequence, string and regular expresions
+ #region Sequence, string and regular expressions
///
/// Create the empty sequence.
///
public SeqExpr MkEmptySeq(Sort s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new SeqExpr(this, Native.Z3_mk_seq_empty(nCtx, s.NativeObject));
}
@@ -2476,8 +2362,7 @@ namespace Microsoft.Z3
///
public SeqExpr MkUnit(Expr elem)
{
- Contract.Requires(elem != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(elem != null);
return new SeqExpr(this, Native.Z3_mk_seq_unit(nCtx, elem.NativeObject));
}
@@ -2486,8 +2371,7 @@ namespace Microsoft.Z3
///
public SeqExpr MkString(string s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new SeqExpr(this, Native.Z3_mk_string(nCtx, s));
}
@@ -2496,9 +2380,8 @@ namespace Microsoft.Z3
///
public SeqExpr IntToString(Expr e)
{
- Contract.Requires(e != null);
- Contract.Requires(e is ArithExpr);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(e != null);
+ Debug.Assert(e is ArithExpr);
return new SeqExpr(this, Native.Z3_mk_int_to_str(nCtx, e.NativeObject));
}
@@ -2507,9 +2390,8 @@ namespace Microsoft.Z3
///
public IntExpr StringToInt(Expr e)
{
- Contract.Requires(e != null);
- Contract.Requires(e is SeqExpr);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(e != null);
+ Debug.Assert(e is SeqExpr);
return new IntExpr(this, Native.Z3_mk_str_to_int(nCtx, e.NativeObject));
}
@@ -2519,9 +2401,8 @@ namespace Microsoft.Z3
///
public SeqExpr MkConcat(params SeqExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new SeqExpr(this, Native.Z3_mk_seq_concat(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -2533,8 +2414,7 @@ namespace Microsoft.Z3
///
public IntExpr MkLength(SeqExpr s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return (IntExpr) Expr.Create(this, Native.Z3_mk_seq_length(nCtx, s.NativeObject));
}
@@ -2543,9 +2423,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkPrefixOf(SeqExpr s1, SeqExpr s2)
{
- Contract.Requires(s1 != null);
- Contract.Requires(s2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s1 != null);
+ Debug.Assert(s2 != null);
CheckContextMatch(s1, s2);
return new BoolExpr(this, Native.Z3_mk_seq_prefix(nCtx, s1.NativeObject, s2.NativeObject));
}
@@ -2555,9 +2434,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkSuffixOf(SeqExpr s1, SeqExpr s2)
{
- Contract.Requires(s1 != null);
- Contract.Requires(s2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s1 != null);
+ Debug.Assert(s2 != null);
CheckContextMatch(s1, s2);
return new BoolExpr(this, Native.Z3_mk_seq_suffix(nCtx, s1.NativeObject, s2.NativeObject));
}
@@ -2567,9 +2445,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkContains(SeqExpr s1, SeqExpr s2)
{
- Contract.Requires(s1 != null);
- Contract.Requires(s2 != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s1 != null);
+ Debug.Assert(s2 != null);
CheckContextMatch(s1, s2);
return new BoolExpr(this, Native.Z3_mk_seq_contains(nCtx, s1.NativeObject, s2.NativeObject));
}
@@ -2579,9 +2456,8 @@ namespace Microsoft.Z3
///
public SeqExpr MkAt(SeqExpr s, IntExpr index)
{
- Contract.Requires(s != null);
- Contract.Requires(index != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
+ Debug.Assert(index != null);
CheckContextMatch(s, index);
return new SeqExpr(this, Native.Z3_mk_seq_at(nCtx, s.NativeObject, index.NativeObject));
}
@@ -2591,10 +2467,9 @@ namespace Microsoft.Z3
///
public SeqExpr MkExtract(SeqExpr s, IntExpr offset, IntExpr length)
{
- Contract.Requires(s != null);
- Contract.Requires(offset != null);
- Contract.Requires(length != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
+ Debug.Assert(offset != null);
+ Debug.Assert(length != null);
CheckContextMatch(s, offset, length);
return new SeqExpr(this, Native.Z3_mk_seq_extract(nCtx, s.NativeObject, offset.NativeObject, length.NativeObject));
}
@@ -2604,10 +2479,9 @@ namespace Microsoft.Z3
///
public IntExpr MkIndexOf(SeqExpr s, SeqExpr substr, ArithExpr offset)
{
- Contract.Requires(s != null);
- Contract.Requires(offset != null);
- Contract.Requires(substr != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
+ Debug.Assert(offset != null);
+ Debug.Assert(substr != null);
CheckContextMatch(s, substr, offset);
return new IntExpr(this, Native.Z3_mk_seq_index(nCtx, s.NativeObject, substr.NativeObject, offset.NativeObject));
}
@@ -2617,10 +2491,9 @@ namespace Microsoft.Z3
///
public SeqExpr MkReplace(SeqExpr s, SeqExpr src, SeqExpr dst)
{
- Contract.Requires(s != null);
- Contract.Requires(src != null);
- Contract.Requires(dst != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
+ Debug.Assert(src != null);
+ Debug.Assert(dst != null);
CheckContextMatch(s, src, dst);
return new SeqExpr(this, Native.Z3_mk_seq_replace(nCtx, s.NativeObject, src.NativeObject, dst.NativeObject));
}
@@ -2630,8 +2503,7 @@ namespace Microsoft.Z3
///
public ReExpr MkToRe(SeqExpr s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new ReExpr(this, Native.Z3_mk_seq_to_re(nCtx, s.NativeObject));
}
@@ -2641,9 +2513,8 @@ namespace Microsoft.Z3
///
public BoolExpr MkInRe(SeqExpr s, ReExpr re)
{
- Contract.Requires(s != null);
- Contract.Requires(re != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
+ Debug.Assert(re != null);
CheckContextMatch(s, re);
return new BoolExpr(this, Native.Z3_mk_seq_in_re(nCtx, s.NativeObject, re.NativeObject));
}
@@ -2653,8 +2524,7 @@ namespace Microsoft.Z3
///
public ReExpr MkStar(ReExpr re)
{
- Contract.Requires(re != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(re != null);
return new ReExpr(this, Native.Z3_mk_re_star(nCtx, re.NativeObject));
}
@@ -2663,8 +2533,7 @@ namespace Microsoft.Z3
///
public ReExpr MkLoop(ReExpr re, uint lo, uint hi = 0)
{
- Contract.Requires(re != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(re != null);
return new ReExpr(this, Native.Z3_mk_re_loop(nCtx, re.NativeObject, lo, hi));
}
@@ -2673,8 +2542,7 @@ namespace Microsoft.Z3
///
public ReExpr MkPlus(ReExpr re)
{
- Contract.Requires(re != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(re != null);
return new ReExpr(this, Native.Z3_mk_re_plus(nCtx, re.NativeObject));
}
@@ -2683,8 +2551,7 @@ namespace Microsoft.Z3
///
public ReExpr MkOption(ReExpr re)
{
- Contract.Requires(re != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(re != null);
return new ReExpr(this, Native.Z3_mk_re_option(nCtx, re.NativeObject));
}
@@ -2693,8 +2560,7 @@ namespace Microsoft.Z3
///
public ReExpr MkComplement(ReExpr re)
{
- Contract.Requires(re != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(re != null);
return new ReExpr(this, Native.Z3_mk_re_complement(nCtx, re.NativeObject));
}
@@ -2703,9 +2569,8 @@ namespace Microsoft.Z3
///
public ReExpr MkConcat(params ReExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new ReExpr(this, Native.Z3_mk_re_concat(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -2716,9 +2581,8 @@ namespace Microsoft.Z3
///
public ReExpr MkUnion(params ReExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new ReExpr(this, Native.Z3_mk_re_union(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -2729,9 +2593,8 @@ namespace Microsoft.Z3
///
public ReExpr MkIntersect(params ReExpr[] t)
{
- Contract.Requires(t != null);
- Contract.Requires(Contract.ForAll(t, a => a != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(t != null);
+ Debug.Assert(t.All(a => a != null));
CheckContextMatch(t);
return new ReExpr(this, Native.Z3_mk_re_intersect(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
@@ -2742,8 +2605,7 @@ namespace Microsoft.Z3
///
public ReExpr MkEmptyRe(Sort s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new ReExpr(this, Native.Z3_mk_re_empty(nCtx, s.NativeObject));
}
@@ -2752,8 +2614,7 @@ namespace Microsoft.Z3
///
public ReExpr MkFullRe(Sort s)
{
- Contract.Requires(s != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(s != null);
return new ReExpr(this, Native.Z3_mk_re_full(nCtx, s.NativeObject));
}
@@ -2763,9 +2624,8 @@ namespace Microsoft.Z3
///
public ReExpr MkRange(SeqExpr lo, SeqExpr hi)
{
- Contract.Requires(lo != null);
- Contract.Requires(hi != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(lo != null);
+ Debug.Assert(hi != null);
CheckContextMatch(lo, hi);
return new ReExpr(this, Native.Z3_mk_re_range(nCtx, lo.NativeObject, hi.NativeObject));
}
@@ -2779,8 +2639,7 @@ namespace Microsoft.Z3
///
public BoolExpr MkAtMost(IEnumerable args, uint k)
{
- Contract.Requires(args != null);
- Contract.Requires(Contract.Result() != null);
+ Debug.Assert(args != null);
CheckContextMatch(args);
return new BoolExpr(this, Native.Z3_mk_atmost(nCtx, (uint) args.Count(),
AST.EnumToNative(args), k));
@@ -2791,8 +2650,7 @@ namespace Microsoft.Z3
///
public BoolExpr MkAtLeast(IEnumerable args, uint k)
{
- Contract.Requires(args != null);
- Contract.Requires(Contract.Result() != null);
+ Debug.Assert(args != null);
CheckContextMatch(args);
return new BoolExpr(this, Native.Z3_mk_atleast(nCtx, (uint) args.Count(),
AST.EnumToNative(args), k));
@@ -2803,10 +2661,9 @@ namespace Microsoft.Z3
///
public BoolExpr MkPBLe(int[] coeffs, BoolExpr[] args, int k)
{
- Contract.Requires(args != null);
- Contract.Requires(coeffs != null);
- Contract.Requires(args.Length == coeffs.Length);
- Contract.Requires(Contract.Result() != null);
+ Debug.Assert(args != null);
+ Debug.Assert(coeffs != null);
+ Debug.Assert(args.Length == coeffs.Length);
CheckContextMatch(args);
return new BoolExpr(this, Native.Z3_mk_pble(nCtx, (uint) args.Length,
AST.ArrayToNative(args),
@@ -2818,10 +2675,9 @@ namespace Microsoft.Z3
///
public BoolExpr MkPBGe(int[] coeffs, BoolExpr[] args, int k)
{
- Contract.Requires(args != null);
- Contract.Requires(coeffs != null);
- Contract.Requires(args.Length == coeffs.Length);
- Contract.Requires(Contract.Result() != null);
+ Debug.Assert(args != null);
+ Debug.Assert(coeffs != null);
+ Debug.Assert(args.Length == coeffs.Length);
CheckContextMatch(args);
return new BoolExpr(this, Native.Z3_mk_pbge(nCtx, (uint) args.Length,
AST.ArrayToNative(args),
@@ -2832,10 +2688,9 @@ namespace Microsoft.Z3
///
public BoolExpr MkPBEq(int[] coeffs, BoolExpr[] args, int k)
{
- Contract.Requires(args != null);
- Contract.Requires(coeffs != null);
- Contract.Requires(args.Length == coeffs.Length);
- Contract.Requires(Contract.Result() != null);
+ Debug.Assert(args != null);
+ Debug.Assert(coeffs != null);
+ Debug.Assert(args.Length == coeffs.Length);
CheckContextMatch(args);
return new BoolExpr(this, Native.Z3_mk_pbeq(nCtx, (uint) args.Length,
AST.ArrayToNative(args),
@@ -2854,8 +2709,7 @@ namespace Microsoft.Z3
/// A Term with value and sort
public Expr MkNumeral(string v, Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
CheckContextMatch(ty);
return Expr.Create(this, Native.Z3_mk_numeral(nCtx, v, ty.NativeObject));
@@ -2870,8 +2724,7 @@ namespace Microsoft.Z3
/// A Term with value and type
public Expr MkNumeral(int v, Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
CheckContextMatch(ty);
return Expr.Create(this, Native.Z3_mk_int(nCtx, v, ty.NativeObject));
@@ -2886,8 +2739,7 @@ namespace Microsoft.Z3
/// A Term with value and type
public Expr MkNumeral(uint v, Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
CheckContextMatch(ty);
return Expr.Create(this, Native.Z3_mk_unsigned_int(nCtx, v, ty.NativeObject));
@@ -2902,8 +2754,7 @@ namespace Microsoft.Z3
/// A Term with value and type
public Expr MkNumeral(long v, Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
CheckContextMatch(ty);
return Expr.Create(this, Native.Z3_mk_int64(nCtx, v, ty.NativeObject));
@@ -2918,8 +2769,7 @@ namespace Microsoft.Z3
/// A Term with value and type
public Expr MkNumeral(ulong v, Sort ty)
{
- Contract.Requires(ty != null);
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(ty != null);
CheckContextMatch(ty);
return Expr.Create(this, Native.Z3_mk_unsigned_int64(nCtx, v, ty.NativeObject));
@@ -2939,9 +2789,6 @@ namespace Microsoft.Z3
if (den == 0)
throw new Z3Exception("Denominator is zero");
- Contract.Ensures(Contract.Result() != null);
- Contract.EndContractBlock();
-
return new RatNum(this, Native.Z3_mk_real(nCtx, num, den));
}
@@ -2952,7 +2799,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Real
public RatNum MkReal(string v)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(this, Native.Z3_mk_numeral(nCtx, v, RealSort.NativeObject));
}
@@ -2964,7 +2810,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Real
public RatNum MkReal(int v)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(this, Native.Z3_mk_int(nCtx, v, RealSort.NativeObject));
}
@@ -2976,7 +2821,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Real
public RatNum MkReal(uint v)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(this, Native.Z3_mk_unsigned_int(nCtx, v, RealSort.NativeObject));
}
@@ -2988,7 +2832,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Real
public RatNum MkReal(long v)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(this, Native.Z3_mk_int64(nCtx, v, RealSort.NativeObject));
}
@@ -3000,7 +2843,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Real
public RatNum MkReal(ulong v)
{
- Contract.Ensures(Contract.Result() != null);
return new RatNum(this, Native.Z3_mk_unsigned_int64(nCtx, v, RealSort.NativeObject));
}
@@ -3013,7 +2855,6 @@ namespace Microsoft.Z3
/// A string representing the Term value in decimal notation.
public IntNum MkInt(string v)
{
- Contract.Ensures(Contract.Result() != null);
return new IntNum(this, Native.Z3_mk_numeral(nCtx, v, IntSort.NativeObject));
}
@@ -3025,7 +2866,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Integer
public IntNum MkInt(int v)
{
- Contract.Ensures(Contract.Result() != null);
return new IntNum(this, Native.Z3_mk_int(nCtx, v, IntSort.NativeObject));
}
@@ -3037,7 +2877,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Integer
public IntNum MkInt(uint v)
{
- Contract.Ensures(Contract.Result() != null);
return new IntNum(this, Native.Z3_mk_unsigned_int(nCtx, v, IntSort.NativeObject));
}
@@ -3049,7 +2888,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Integer
public IntNum MkInt(long v)
{
- Contract.Ensures(Contract.Result() != null);
return new IntNum(this, Native.Z3_mk_int64(nCtx, v, IntSort.NativeObject));
}
@@ -3061,7 +2899,6 @@ namespace Microsoft.Z3
/// A Term with value and sort Integer
public IntNum MkInt(ulong v)
{
- Contract.Ensures(Contract.Result() != null);
return new IntNum(this, Native.Z3_mk_unsigned_int64(nCtx, v, IntSort.NativeObject));
}
@@ -3075,7 +2912,6 @@ namespace Microsoft.Z3
/// the size of the bit-vector
public BitVecNum MkBV(string v, uint size)
{
- Contract.Ensures(Contract.Result() != null);
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
}
@@ -3087,7 +2923,6 @@ namespace Microsoft.Z3
/// the size of the bit-vector
public BitVecNum MkBV(int v, uint size)
{
- Contract.Ensures(Contract.Result() != null);
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
}
@@ -3099,7 +2934,6 @@ namespace Microsoft.Z3
/// the size of the bit-vector
public BitVecNum MkBV(uint v, uint size)
{
- Contract.Ensures(Contract.Result() != null);
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
}
@@ -3111,7 +2945,6 @@ namespace Microsoft.Z3
/// the size of the bit-vector
public BitVecNum MkBV(long v, uint size)
{
- Contract.Ensures(Contract.Result() != null);
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
}
@@ -3123,7 +2956,6 @@ namespace Microsoft.Z3
/// the size of the bit-vector
public BitVecNum MkBV(ulong v, uint size)
{
- Contract.Ensures(Contract.Result() != null);
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
}
@@ -3131,10 +2963,9 @@ namespace Microsoft.Z3
///
/// Create a bit-vector numeral.
///
- /// An array of bits representing the bit-vector. Least signficant bit is at position 0.
+ /// An array of bits representing the bit-vector. Least significant bit is at position 0.
public BitVecNum MkBV(bool[] bits)
{
- Contract.Ensures(Contract.Result() != null);
byte[] _bits = new byte[bits.Length];
for (int i = 0; i < bits.Length; ++i) _bits[i] = (byte)(bits[i] ? 1 : 0);
return (BitVecNum)Expr.Create(this, Native.Z3_mk_bv_numeral(nCtx, (uint)bits.Length, _bits));
@@ -3172,16 +3003,15 @@ namespace Microsoft.Z3
/// optional symbol to track skolem constants.
public Quantifier MkForall(Sort[] sorts, Symbol[] names, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
{
- Contract.Requires(sorts != null);
- Contract.Requires(names != null);
- Contract.Requires(body != null);
- Contract.Requires(sorts.Length == names.Length);
- Contract.Requires(Contract.ForAll(sorts, s => s != null));
- Contract.Requires(Contract.ForAll(names, n => n != null));
- Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
- Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
+ Debug.Assert(sorts != null);
+ Debug.Assert(names != null);
+ Debug.Assert(body != null);
+ Debug.Assert(sorts.Length == names.Length);
+ Debug.Assert(sorts.All(s => s != null));
+ Debug.Assert(names.All(n => n != null));
+ Debug.Assert(patterns == null || patterns.All(p => p != null));
+ Debug.Assert(noPatterns == null || noPatterns.All(np => np != null));
- Contract.Ensures(Contract.Result() != null);
return new Quantifier(this, true, sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
}
@@ -3197,12 +3027,11 @@ namespace Microsoft.Z3
///
public Quantifier MkForall(Expr[] boundConstants, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
{
- Contract.Requires(body != null);
- Contract.Requires(boundConstants == null || Contract.ForAll(boundConstants, b => b != null));
- Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
- Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
+ Debug.Assert(body != null);
+ Debug.Assert(boundConstants == null || boundConstants.All(b => b != null));
+ Debug.Assert(patterns == null || patterns.All(p => p != null));
+ Debug.Assert(noPatterns == null || noPatterns.All(np => np != null));
- Contract.Ensures(Contract.Result() != null);
return new Quantifier(this, true, boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
}
@@ -3216,15 +3045,14 @@ namespace Microsoft.Z3
///
public Quantifier MkExists(Sort[] sorts, Symbol[] names, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
{
- Contract.Requires(sorts != null);
- Contract.Requires(names != null);
- Contract.Requires(body != null);
- Contract.Requires(sorts.Length == names.Length);
- Contract.Requires(Contract.ForAll(sorts, s => s != null));
- Contract.Requires(Contract.ForAll(names, n => n != null));
- Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
- Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(sorts != null);
+ Debug.Assert(names != null);
+ Debug.Assert(body != null);
+ Debug.Assert(sorts.Length == names.Length);
+ Debug.Assert(sorts.All(s => s != null));
+ Debug.Assert(names.All(n => n != null));
+ Debug.Assert(patterns == null || patterns.All(p => p != null));
+ Debug.Assert(noPatterns == null || noPatterns.All(np => np != null));
return new Quantifier(this, false, sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
}
@@ -3239,11 +3067,10 @@ namespace Microsoft.Z3
///
public Quantifier MkExists(Expr[] boundConstants, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
{
- Contract.Requires(body != null);
- Contract.Requires(boundConstants == null || Contract.ForAll(boundConstants, n => n != null));
- Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
- Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(body != null);
+ Debug.Assert(boundConstants == null || boundConstants.All(n => n != null));
+ Debug.Assert(patterns == null || patterns.All(p => p != null));
+ Debug.Assert(noPatterns == null || noPatterns.All(np => np != null));
return new Quantifier(this, false, boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
}
@@ -3255,16 +3082,15 @@ namespace Microsoft.Z3
///
public Quantifier MkQuantifier(bool universal, Sort[] sorts, Symbol[] names, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
{
- Contract.Requires(body != null);
- Contract.Requires(names != null);
- Contract.Requires(sorts != null);
- Contract.Requires(sorts.Length == names.Length);
- Contract.Requires(Contract.ForAll(sorts, s => s != null));
- Contract.Requires(Contract.ForAll(names, n => n != null));
- Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
- Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
+ Debug.Assert(body != null);
+ Debug.Assert(names != null);
+ Debug.Assert(sorts != null);
+ Debug.Assert(sorts.Length == names.Length);
+ Debug.Assert(sorts.All(s => s != null));
+ Debug.Assert(names.All(n => n != null));
+ Debug.Assert(patterns == null || patterns.All(p => p != null));
+ Debug.Assert(noPatterns == null || noPatterns.All(np => np != null));
- Contract.Ensures(Contract.Result() != null);
if (universal)
return MkForall(sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
@@ -3279,12 +3105,11 @@ namespace Microsoft.Z3
///
public Quantifier MkQuantifier(bool universal, Expr[] boundConstants, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
{
- Contract.Requires(body != null);
- Contract.Requires(boundConstants == null || Contract.ForAll(boundConstants, n => n != null));
- Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
- Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
+ Debug.Assert(body != null);
+ Debug.Assert(boundConstants == null || boundConstants.All(n => n != null));
+ Debug.Assert(patterns == null || patterns.All(p => p != null));
+ Debug.Assert(noPatterns == null || noPatterns.All(np => np != null));
- Contract.Ensures(Contract.Result() != null);
if (universal)
return MkForall(boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
@@ -3312,13 +3137,12 @@ namespace Microsoft.Z3
/// the body of the quantifier.
public Lambda MkLambda(Sort[] sorts, Symbol[] names, Expr body)
{
- Contract.Requires(sorts != null);
- Contract.Requires(names != null);
- Contract.Requires(body != null);
- Contract.Requires(sorts.Length == names.Length);
- Contract.Requires(Contract.ForAll(sorts, s => s != null));
- Contract.Requires(Contract.ForAll(names, n => n != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(sorts != null);
+ Debug.Assert(names != null);
+ Debug.Assert(body != null);
+ Debug.Assert(sorts.Length == names.Length);
+ Debug.Assert(sorts.All(s => s != null));
+ Debug.Assert(names.All(n => n != null));
return new Lambda(this, sorts, names, body);
}
@@ -3332,9 +3156,8 @@ namespace Microsoft.Z3
///
public Lambda MkLambda(Expr[] boundConstants, Expr body)
{
- Contract.Requires(body != null);
- Contract.Requires(boundConstants != null && Contract.ForAll(boundConstants, b => b != null));
- Contract.Ensures(Contract.Result() != null);
+ Debug.Assert(body != null);
+ Debug.Assert(boundConstants != null && boundConstants.All(b => b != null));
return new Lambda(this, boundConstants, body);
}
@@ -3374,7 +3197,6 @@ namespace Microsoft.Z3
/// A conjunction of assertions in the scope (up to push/pop) at the end of the string.
public BoolExpr[] ParseSMTLIB2String(string str, Symbol[] sortNames = null, Sort[] sorts = null, Symbol[] declNames = null, FuncDecl[] decls = null)
{
- Contract.Ensures(Contract.Result() != null);
uint csn = Symbol.ArrayLength(sortNames);
uint cs = Sort.ArrayLength(sorts);
@@ -3394,7 +3216,6 @@ namespace Microsoft.Z3
///
public BoolExpr[] ParseSMTLIB2File(string fileName, Symbol[] sortNames = null, Sort[] sorts = null, Symbol[] declNames = null, FuncDecl[] decls = null)
{
- Contract.Ensures(Contract.Result() != null);
uint csn = Symbol.ArrayLength(sortNames);
uint cs = Sort.ArrayLength(sorts);
@@ -3422,7 +3243,6 @@ namespace Microsoft.Z3
/// Indicates whether proof generation should be enabled.
public Goal MkGoal(bool models = true, bool unsatCores = false, bool proofs = false)
{
- Contract.Ensures(Contract.Result() != null);
return new Goal(this, models, unsatCores, proofs);
}
@@ -3434,7 +3254,6 @@ namespace Microsoft.Z3
///
public Params MkParams()
{
- Contract.Ensures(Contract.Result() != null);
return new Params(this);
}
@@ -3456,7 +3275,6 @@ namespace Microsoft.Z3
{
get
{
- Contract.Ensures(Contract.Result() != null);
uint n = NumTactics;
string[] res = new string[n];
@@ -3471,7 +3289,6 @@ namespace Microsoft.Z3
///
public string TacticDescription(string name)
{
- Contract.Ensures(Contract.Result() != null);
return Native.Z3_tactic_get_descr(nCtx, name);
}
@@ -3481,7 +3298,6 @@ namespace Microsoft.Z3
///
public Tactic MkTactic(string name)
{
- Contract.Ensures(Contract.Result() != null);
return new Tactic(this, name);
}
@@ -3492,10 +3308,9 @@ namespace Microsoft.Z3
///
public Tactic AndThen(Tactic t1, Tactic t2, params Tactic[] ts)
{
- Contract.Requires(t1 != null);
- Contract.Requires(t2 != null);
- Contract.Requires(ts == null || Contract.ForAll(0, ts.Length, j => ts[j] != null));
- Contract.Ensures(Contract.Result