Created
December 10, 2015 14:59
-
-
Save neomatrix369/55af3dc09fce145803e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Transformation Priority Premise | |
| ({}–>nil) no code at all->code that employs nil | |
| (nil->constant) | |
| (constant->constant+) a simple constant to a more complex constant | |
| (constant->scalar) replacing a constant with a variable or an argument | |
| (statement->statements) adding more unconditional statements. | |
| (unconditional->if) splitting the execution path | |
| (scalar->array) | |
| (array->container) | |
| (statement->recursion) | |
| (if->while) | |
| (expression->function) replacing an expression with a function or algorithm | |
| (variable->assignment) replacing the value of a variable. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment