mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 04:26:00 +00:00
conflict logging
This commit is contained in:
parent
00fa4b3320
commit
9fa5096776
11 changed files with 210 additions and 26 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue