3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 02:40:24 +00:00

do not use and for non mutually recursive types

This commit is contained in:
zapashcanon 2024-02-19 16:07:50 +01:00
parent 199ef30e0c
commit 78275d2557
No known key found for this signature in database
GPG key ID: 8981C3C62D1D28F1

View file

@ -4,36 +4,36 @@ open Z3enums
(**/**) (**/**)
type ptr type ptr
and symbol = ptr type symbol = ptr
and config = ptr type config = ptr
and context = ptr type context = ptr
and ast = ptr type ast = ptr
and app = ast type app = ast
and sort = ast type sort = ast
and func_decl = ast type func_decl = ast
and pattern = ast type pattern = ast
and model = ptr type model = ptr
and literals = ptr type literals = ptr
and constructor = ptr type constructor = ptr
and constructor_list = ptr type constructor_list = ptr
and solver = ptr type solver = ptr
and solver_callback = ptr type solver_callback = ptr
and goal = ptr type goal = ptr
and tactic = ptr type tactic = ptr
and simplifier = ptr type simplifier = ptr
and params = ptr type params = ptr
and parser_context = ptr type parser_context = ptr
and probe = ptr type probe = ptr
and stats = ptr type stats = ptr
and ast_vector = ptr type ast_vector = ptr
and ast_map = ptr type ast_map = ptr
and apply_result = ptr type apply_result = ptr
and func_interp = ptr type func_interp = ptr
and func_entry = ptr type func_entry = ptr
and fixedpoint = ptr type fixedpoint = ptr
and optimize = ptr type optimize = ptr
and param_descrs = ptr type param_descrs = ptr
and rcf_num = ptr type rcf_num = ptr
external set_internal_error_handler : ptr -> unit external set_internal_error_handler : ptr -> unit
= "n_set_internal_error_handler" = "n_set_internal_error_handler"