mirror of
https://github.com/Z3Prover/z3
synced 2025-11-06 22:36:03 +00:00
modernize parameter defaults
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
cdcfbeb6d8
commit
18e4546404
6 changed files with 55 additions and 106 deletions
|
|
@ -22,14 +22,10 @@ struct theory_seq_params {
|
|||
/*
|
||||
* Enable splitting guided by length constraints
|
||||
*/
|
||||
bool m_split_w_len;
|
||||
bool m_seq_validate;
|
||||
bool m_split_w_len = false;
|
||||
bool m_seq_validate = false;
|
||||
|
||||
|
||||
theory_seq_params(params_ref const & p = params_ref()):
|
||||
m_split_w_len(false),
|
||||
m_seq_validate(false)
|
||||
{
|
||||
theory_seq_params(params_ref const & p = params_ref()) {
|
||||
updt_params(p);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue