mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 02:45:51 +00:00
added Z3_global_param_reset_all API
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
7d24cd4ae3
commit
92a29b1e43
7 changed files with 56 additions and 71 deletions
|
@ -219,6 +219,11 @@ def set_param(*args, **kws):
|
|||
Z3_global_param_set(str(prev), _to_param_value(a))
|
||||
prev = None
|
||||
|
||||
def reset_params():
|
||||
"""Reset all global (or module) parameters.
|
||||
"""
|
||||
Z3_global_param_reset_all()
|
||||
|
||||
def set_option(*args, **kws):
|
||||
"""Alias for 'set_param' for backward compatibility.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue