We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48cddd7 commit b25b2afCopy full SHA for b25b2af
README.md
@@ -22,8 +22,13 @@ TODO...
22
```console
23
$ expr_simplifier cse "a * 4 + (a * 4)"
24
(___t_0 := (a * 4)) + ___t_0
25
-$ expr_simplifier constant_folding "(___x := 1 + 1) + ___x" --max-iter=2
+$ expr_simplifier constant_folding "(___x := 1 + 1) + ___x" --max-iter=1
26
(___x := 2) + ___x
27
$ expr_simplifier constant_folding "(___x := 1 + 1) + ___x" --max-iter=2
28
4
29
```
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