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

separate out file for objectives

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-11-07 18:09:44 -08:00
parent 759d80dfe3
commit 401fced400
10 changed files with 199 additions and 61 deletions

View file

@ -28,6 +28,7 @@ Notes:
#include "ast.h"
#include "solver.h"
#include "optimize_objectives.h"
#include "opt_maxsmt.h"
namespace opt {
@ -43,6 +44,7 @@ namespace opt {
ref<solver> m_solver;
params_ref m_params;
optimize_objectives m_opt_objectives;
maxsmt m_maxsmt;
public:
context(ast_manager& m);