3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 13:27:01 +00:00
z3/src/opt/maxhs.h
Nikolaj Bjorner 911ffc370a separate MaxSMT functionality to enable using this independently (and incrementally) of overall context
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-02-16 09:11:28 +01:00

29 lines
391 B
C++

/*++
Copyright (c) 2014 Microsoft Corporation
Module Name:
maxhs.h
Abstract:
HS-max based MaxSAT.
Author:
Nikolaj Bjorner (nbjorner) 2014-4-17
Notes:
--*/
#ifndef _HS_MAX_H_
#define _HS_MAX_H_
#include "maxsmt.h"
namespace opt {
maxsmt_solver_base* mk_maxhs(maxsat_context& c,
weights_t& ws, expr_ref_vector const& soft);
}
#endif