Skip to content

Commit b25b2af

Browse files
committed
📝 docs: add todos
1 parent 48cddd7 commit b25b2af

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,13 @@ TODO...
2222
```console
2323
$ expr_simplifier cse "a * 4 + (a * 4)"
2424
(___t_0 := (a * 4)) + ___t_0
25-
$ expr_simplifier constant_folding "(___x := 1 + 1) + ___x" --max-iter=2
25+
$ expr_simplifier constant_folding "(___x := 1 + 1) + ___x" --max-iter=1
2626
(___x := 2) + ___x
2727
$ expr_simplifier constant_folding "(___x := 1 + 1) + ___x" --max-iter=2
2828
4
2929
```
30+
31+
## TODOs
32+
33+
- [ ] Fold same logic operations (`a and b and a` -> `a and b`)
34+
- [ ] Add runtime checks in uts

0 commit comments

Comments
 (0)