3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

ML bindings: list/array are now called z3array/z3list to avoid confusion.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2013-10-21 11:22:42 +01:00
parent 544a74f034
commit 983a0fb16f
2 changed files with 2 additions and 6 deletions

View file

@ -2670,7 +2670,3 @@ let global_param_reset_all =
let toggle_warning_messages ( enabled: bool ) = let toggle_warning_messages ( enabled: bool ) =
Z3native.toggle_warning_messages enabled Z3native.toggle_warning_messages enabled
module Array = Z3Array
module List = Z3List

View file

@ -761,7 +761,7 @@ sig
end end
(** Functions to manipulate Array expressions *) (** Functions to manipulate Array expressions *)
module Array : module Z3Array :
sig sig
(** Create a new array sort. *) (** Create a new array sort. *)
val mk_sort : context -> Sort.sort -> Sort.sort -> Sort.sort val mk_sort : context -> Sort.sort -> Sort.sort -> Sort.sort
@ -1093,7 +1093,7 @@ sig
end end
(** Functions to manipulate List expressions *) (** Functions to manipulate List expressions *)
module List : module Z3List :
sig sig
(** Create a new list sort. *) (** Create a new list sort. *)
val mk_sort : context -> Symbol.symbol -> Sort.sort -> Sort.sort val mk_sort : context -> Symbol.symbol -> Sort.sort -> Sort.sort