mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +00:00
29 lines
391 B
C++
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
|