mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 08:58:44 +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,12 +22,11 @@ Revision History:
|
|||
|
||||
|
||||
struct theory_pb_params {
|
||||
unsigned m_pb_conflict_frequency;
|
||||
bool m_pb_learn_complements;
|
||||
theory_pb_params(params_ref const & p = params_ref()):
|
||||
m_pb_conflict_frequency(1000),
|
||||
m_pb_learn_complements(true)
|
||||
{}
|
||||
unsigned m_pb_conflict_frequency = 1000;
|
||||
bool m_pb_learn_complements = true;
|
||||
theory_pb_params(params_ref const & p = params_ref()) {
|
||||
updt_params(p);
|
||||
}
|
||||
|
||||
void updt_params(params_ref const & p);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue