3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-07 15:55:46 +00:00

start wcnf

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-02-26 11:13:44 -08:00
parent be68456c06
commit 08f55f9d1f
5 changed files with 30 additions and 2 deletions

View file

@ -123,3 +123,8 @@ std::ostream& display_dimacs(std::ostream& out, expr_ref_vector const& fmls, boo
}
return out;
}
std::ostream& display_wcnf(std::ostream& out, expr_ref_vector const& fmls, vector<std::pair<expr*,unsigned>> const& soft, bool include_names) {
NOT_IMPLEMENTED_YET();
return out;
}