mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
28 lines
350 B
C++
28 lines
350 B
C++
/*++
|
|
Copyright (c) 2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
bcd2.h
|
|
|
|
Abstract:
|
|
|
|
Bcd2 based MaxSAT.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2014-4-17
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
#ifndef _BCD2_H_
|
|
#define _BCD2_H_
|
|
|
|
#include "maxsmt.h"
|
|
|
|
namespace opt {
|
|
maxsmt_solver_base* mk_bcd2(maxsat_context& c, weights_t& ws, expr_ref_vector const& soft);
|
|
}
|
|
#endif
|