mirror of
https://github.com/Z3Prover/z3
synced 2025-05-03 22:05:45 +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
|
@ -1260,6 +1260,17 @@ extern "C" {
|
|||
def_API('Z3_global_param_set', VOID, (_in(STRING), _in(STRING)))
|
||||
*/
|
||||
void Z3_API Z3_global_param_set(__in Z3_string param_id, __in Z3_string param_value);
|
||||
|
||||
|
||||
/**
|
||||
\brief Restore the value of all global (and module) parameters.
|
||||
This command will not affect already created objects (such as tactics and solvers).
|
||||
|
||||
\sa Z3_global_param_set
|
||||
|
||||
def_API('Z3_global_param_reset_all', VOID, ())
|
||||
*/
|
||||
void Z3_API Z3_global_param_reset_all();
|
||||
|
||||
/**
|
||||
\brief Get a global (or module) parameter.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue