3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-24 01:01:19 +00:00
z3/src/opt/maxhs.h
Nikolaj Bjorner 8938de2ba2 fix build error reported by Ari
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2014-08-25 12:11:34 -07:00

29 lines
384 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(context& c,
weights_t& ws, expr_ref_vector const& soft);
}
#endif