mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable
This commit is contained in:
commit
4d3a653309
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,6 +6,7 @@
|
|||
*.cma
|
||||
*.cmi
|
||||
*.cmxa
|
||||
ocamlz3
|
||||
# Emacs temp files
|
||||
\#*\#
|
||||
# Directories with generated code and documentation
|
||||
|
@ -23,7 +24,7 @@ src/HTML/*
|
|||
src/cscope.in.out
|
||||
src/cscope.out
|
||||
src/cscope.po.out
|
||||
ncsope.out
|
||||
ncscope.out
|
||||
# CEDET files
|
||||
.cproject
|
||||
.project
|
||||
|
|
|
@ -7,6 +7,11 @@ Version 4.3.2
|
|||
|
||||
- Added support for FreeBSD. Z3 can be compiled on FreeBSD using g++.
|
||||
|
||||
- Reverted to `(set-option :global-decls false)` as the default. In Z3 4.3.0 and Z3 4.3.1, this option was set to true.
|
||||
Thanks to Julien Henry for reporting this problem.
|
||||
|
||||
- Added `doc` directory and scripts for automatically generating the API documentation.
|
||||
|
||||
Version 4.3.1
|
||||
=============
|
||||
|
||||
|
|
|
@ -306,7 +306,7 @@ cmd_context::cmd_context(front_end_params * params, bool main_ctx, ast_manager *
|
|||
m_params_owner(params == 0),
|
||||
m_logic(l),
|
||||
m_interactive_mode(false),
|
||||
m_global_decls(!this->params().m_smtlib2_compliant), // SMTLIB 2.0 uses scoped decls.
|
||||
m_global_decls(false), // :global-decls is false by default.
|
||||
m_print_success(false), // params.m_smtlib2_compliant),
|
||||
m_random_seed(0),
|
||||
m_produce_unsat_cores(false),
|
||||
|
|
Loading…
Reference in a new issue