mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 04:13:38 +00:00
Set :global-decls to false
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
6c11a78e61
commit
557cda70b0
2 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,9 @@ Version 4.3.2
|
||||||
|
|
||||||
- Added support for FreeBSD. Z3 can be compiled on FreeBSD using g++.
|
- 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 false.
|
||||||
|
Thanks to Julien Henry for reporting this problem.
|
||||||
|
|
||||||
Version 4.3.1
|
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_params_owner(params == 0),
|
||||||
m_logic(l),
|
m_logic(l),
|
||||||
m_interactive_mode(false),
|
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_print_success(false), // params.m_smtlib2_compliant),
|
||||||
m_random_seed(0),
|
m_random_seed(0),
|
||||||
m_produce_unsat_cores(false),
|
m_produce_unsat_cores(false),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue