mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 00:32:16 +00:00
fix compiler errors for gcc
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5f4ca8c6fc
commit
706e6291e3
5 changed files with 15 additions and 21 deletions
|
@ -68,14 +68,13 @@ namespace sls {
|
|||
}
|
||||
|
||||
class solver::smt_plugin : public sat::local_search_plugin, public sls::sat_solver_context {
|
||||
ast_manager& m;
|
||||
sat::ddfw* m_ddfw;
|
||||
solver& s;
|
||||
sat::ddfw* m_ddfw;
|
||||
sls::context m_context;
|
||||
bool m_new_clause_added = false;
|
||||
public:
|
||||
smt_plugin(ast_manager& m, solver& s, sat::ddfw* d) :
|
||||
m(m), s(s), m_ddfw(d), m_context(m, *this) {}
|
||||
s(s), m_ddfw(d), m_context(m, *this) {}
|
||||
|
||||
void init_search() override {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue