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

remove comment that does not align with result

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-12-06 15:53:55 -08:00
parent d125d87aed
commit aaabbfb594

View file

@ -47,7 +47,6 @@ Once all negations are pushed inside, the resulting formula is in NNF.
(apply nnf)
```
This would convert the formula (not (or (> x 0) (< x 0))) to (and (<= x 0) (>= x 0)), which is in NNF.
### Notes