Commit 72807a00 authored by Jayke Meijer's avatar Jayke Meijer

Fixed textual error in docstring.

parent 1c867eea
...@@ -240,7 +240,7 @@ def copy_propagation(block): ...@@ -240,7 +240,7 @@ def copy_propagation(block):
def algebraic_transformations(block): def algebraic_transformations(block):
""" """
Change ineffective or useless algebraic transformations. Handled are: Change ineffective or useless algebraic expressions. Handled are:
- x = y + 0 -> x = y - x = y + 0 -> x = y
- x = y - 0 -> x = y - x = y - 0 -> x = y
- x = y * 1 -> x = y - x = y * 1 -> x = y
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment