mirror of
https://github.com/Z3Prover/z3
synced 2025-08-29 06:28:57 +00:00
37 lines
571 B
C++
37 lines
571 B
C++
/*++
|
|
Copyright (c) 2013 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
theory_pb_params.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2014-01-01
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "util/params.h"
|
|
|
|
|
|
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)
|
|
{}
|
|
|
|
void updt_params(params_ref const & p);
|
|
|
|
void display(std::ostream & out) const;
|
|
};
|
|
|
|
|