Skip to content

Commit 8ff0bc2

Browse files
committed
fix typo (thanks Bill Mill!)
1 parent 8171e20 commit 8ff0bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/2024/07/finding-simplification-rules-with-z3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ int_or(x, x) -> x
336336
## Synthesizing constants
337337

338338
Supporting the next patterns is harder: `op(x, x) == c1`, `op(x, c1) == x`, and
339-
`op(x, c1) == x`. We don't know which constants to pick to try to get Z3 to
339+
`op(c1, x) == x`. We don't know which constants to pick to try to get Z3 to
340340
prove the equality. We could iterate over common constants like `0`, `1`,
341341
`MAXINT`, etc, or even over all the 256 values for a bitvector of length 8.
342342
However, we will instead ask Z3 to find the constants for us too.

0 commit comments

Comments
 (0)