mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 08:58:44 +00:00
fix for gcc
This commit is contained in:
parent
f6fb9bf316
commit
6bbd68cdf1
1 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,7 @@ Abstract:
|
||||||
Author:
|
Author:
|
||||||
|
|
||||||
Nikolaj Bjorner (nbjorner) 2021-03-19
|
Nikolaj Bjorner (nbjorner) 2021-03-19
|
||||||
Jakob Rath 2021-04-6
|
Jakob Rath 2021-04-06
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -43,7 +43,7 @@ struct smt_params;
|
||||||
|
|
||||||
namespace polysat {
|
namespace polysat {
|
||||||
|
|
||||||
struct config {
|
struct config_t {
|
||||||
uint64_t m_max_conflicts = std::numeric_limits<uint64_t>::max();
|
uint64_t m_max_conflicts = std::numeric_limits<uint64_t>::max();
|
||||||
uint64_t m_max_decisions = std::numeric_limits<uint64_t>::max();
|
uint64_t m_max_decisions = std::numeric_limits<uint64_t>::max();
|
||||||
unsigned m_log_iteration = UINT_MAX;
|
unsigned m_log_iteration = UINT_MAX;
|
||||||
|
@ -153,7 +153,7 @@ namespace polysat {
|
||||||
|
|
||||||
reslimit& m_lim;
|
reslimit& m_lim;
|
||||||
params_ref m_params;
|
params_ref m_params;
|
||||||
config m_config;
|
config_t m_config;
|
||||||
|
|
||||||
mutable scoped_ptr_vector<dd::pdd_manager> m_pdd;
|
mutable scoped_ptr_vector<dd::pdd_manager> m_pdd;
|
||||||
viable m_viable; // viable sets per variable
|
viable m_viable; // viable sets per variable
|
||||||
|
@ -650,7 +650,7 @@ namespace polysat {
|
||||||
void updt_smt_params(smt_params const& p);
|
void updt_smt_params(smt_params const& p);
|
||||||
void updt_polysat_params(params_ref const& p);
|
void updt_polysat_params(params_ref const& p);
|
||||||
params_ref const & params() const { return m_params; }
|
params_ref const & params() const { return m_params; }
|
||||||
config const& config() const { return m_config; }
|
config_t const& config() const { return m_config; }
|
||||||
|
|
||||||
}; // class solver
|
}; // class solver
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue