mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 13:58:45 +00:00
30 lines
414 B
C++
30 lines
414 B
C++
/*++
|
|
Copyright (c) 2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
wmax.h
|
|
|
|
Abstract:
|
|
|
|
Theory Solver based MaxSAT.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2014-4-17
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
#include "opt/maxsmt.h"
|
|
|
|
namespace opt {
|
|
maxsmt_solver_base* mk_wmax(maxsat_context& c, vector<soft>& s, unsigned index);
|
|
|
|
maxsmt_solver_base* mk_sortmax(maxsat_context& c, vector<soft>& s, unsigned index);
|
|
|
|
}
|