mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
reworking pd-maxres
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e3cb0e2d8b
commit
a9807878ea
7 changed files with 23 additions and 18 deletions
|
@ -51,7 +51,6 @@ namespace opt {
|
|||
virtual ast_manager& get_manager() = 0;
|
||||
virtual params_ref& params() = 0;
|
||||
virtual void enable_sls(bool force) = 0; // stochastic local search
|
||||
virtual void set_soft_assumptions() = 0; // configure SAT solver to skip assumptions assigned by unit-propagation
|
||||
virtual symbol const& maxsat_engine() const = 0; // retrieve maxsat engine configuration parameter.
|
||||
virtual void get_base_model(model_ref& _m) = 0; // retrieve model from initial satisfiability call.
|
||||
virtual smt::context& smt_context() = 0; // access SMT context for SMT based MaxSMT solver (wmax requires SMT core)
|
||||
|
@ -216,7 +215,6 @@ namespace opt {
|
|||
virtual ast_manager& get_manager() { return this->m; }
|
||||
virtual params_ref& params() { return m_params; }
|
||||
virtual void enable_sls(bool force);
|
||||
virtual void set_soft_assumptions();
|
||||
virtual symbol const& maxsat_engine() const { return m_maxsat_engine; }
|
||||
virtual void get_base_model(model_ref& _m);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue