mirror of
https://github.com/Z3Prover/z3
synced 2025-04-17 14:25:35 +00:00
30 lines
356 B
C++
30 lines
356 B
C++
/*++
|
|
Copyright (c) 2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
pbmax.h
|
|
|
|
Abstract:
|
|
|
|
MaxSAT based on pb theory.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2014-4-17
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
#ifndef _PBMAX_H_
|
|
#define _PBMAX_H_
|
|
|
|
#include "maxsmt.h"
|
|
|
|
namespace opt {
|
|
maxsmt_solver_base* mk_pbmax(context& c, weights_t& ws, expr_ref_vector const& soft);
|
|
|
|
}
|
|
#endif
|