3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 04:26:00 +00:00

conflict logging

This commit is contained in:
Jakob Rath 2022-04-12 16:06:20 +02:00
parent 00fa4b3320
commit 9fa5096776
11 changed files with 210 additions and 26 deletions

View file

@ -421,8 +421,9 @@ namespace polysat {
solver const& s;
pvar var;
rational const& val;
bool with_justification;
public:
assignment_pp(solver const& s, pvar var, rational const& val): s(s), var(var), val(val) {}
assignment_pp(solver const& s, pvar var, rational const& val, bool with_justification = false): s(s), var(var), val(val), with_justification(with_justification) {}
std::ostream& display(std::ostream& out) const;
};