3
0
Fork 0
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:
Nikolaj Bjorner 2024-07-15 12:17:10 -07:00
parent 5f4ca8c6fc
commit 706e6291e3
5 changed files with 15 additions and 21 deletions

View file

@ -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 {}