mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
Added checks for uint parameter values in context_params
This commit is contained in:
parent
05eb78ccac
commit
6b5e49c4a1
2 changed files with 29 additions and 11 deletions
|
@ -25,7 +25,8 @@ class ast_manager;
|
|||
|
||||
class context_params {
|
||||
void set_bool(bool & opt, char const * param, char const * value);
|
||||
|
||||
void set_uint(unsigned & opt, char const * param, char const * value);
|
||||
|
||||
public:
|
||||
bool m_auto_config;
|
||||
bool m_proof;
|
||||
|
@ -50,7 +51,7 @@ public:
|
|||
/*
|
||||
REG_PARAMS('context_params::collect_param_descrs')
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
\brief Goodies for extracting parameters for creating a solver object.
|
||||
*/
|
||||
|
@ -64,7 +65,7 @@ public:
|
|||
Example: auto_config
|
||||
*/
|
||||
params_ref merge_default_params(params_ref const & p);
|
||||
|
||||
|
||||
/**
|
||||
\brief Create an AST manager using this configuration.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue