mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
Fixed warning message
This commit is contained in:
parent
fa6f9b4a37
commit
8c191781e7
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ void demorgan() {
|
|||
|
||||
expr x = c.bool_const("x");
|
||||
expr y = c.bool_const("y");
|
||||
expr conjecture = !(x && y) == (!x || !y);
|
||||
expr conjecture = (!(x && y)) == (!x || !y);
|
||||
|
||||
solver s(c);
|
||||
// adding the negation of the conjecture as a constraint.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue