3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-23 22:33:40 +00:00

working on weighted maxsat

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-10-28 21:30:57 -07:00
parent 906bbb4eeb
commit d30f183476
5 changed files with 109 additions and 36 deletions

View file

@ -30,6 +30,8 @@ Notes:
namespace opt {
class opt_solver;
class context {
ast_manager& m;
expr_ref_vector m_hard_constraints;
@ -70,6 +72,8 @@ namespace opt {
private:
bool is_maxsat_problem() const;
opt_solver& get_opt_solver(solver& s);
};
}