Typo in CSE project

This commit is contained in:
Alex Ozdemir
2022-03-27 20:24:20 -07:00
committed by GitHub
parent bdd3c59a3c
commit c784bf7054

View File

@@ -1,7 +1,7 @@
# Associative-Commutative Common-Subexpression-Elimination
The idea here is to optimize expressions like `x * y * z + y * x` by being
sure to only compute `y * z` once.
sure to only compute `y * x` once.
More formally (after flattening) we have a big DAG of computation steps, where
some steps apply a *commutative*, *associative* operator (e.g. addition,