mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 10:41:35 +00:00
bug fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b573b94f84
commit
ba05f79415
6 changed files with 16 additions and 12 deletions
|
@ -41,14 +41,14 @@ namespace opt {
|
|||
|
||||
class maxsmt {
|
||||
ast_manager& m;
|
||||
solver* s;
|
||||
solver* m_s;
|
||||
volatile bool m_cancel;
|
||||
expr_ref_vector m_soft_constraints;
|
||||
expr_ref_vector m_answer;
|
||||
vector<rational> m_weights;
|
||||
scoped_ptr<maxsmt_solver> m_msolver;
|
||||
public:
|
||||
maxsmt(ast_manager& m): m(m), s(0), m_cancel(false), m_soft_constraints(m), m_answer(m) {}
|
||||
maxsmt(ast_manager& m): m(m), m_s(0), m_cancel(false), m_soft_constraints(m), m_answer(m) {}
|
||||
|
||||
lbool operator()(solver& s);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue