Does any programming language implement swapping of arguments of logical operation (such as AND, OR) for faster evaluation?
Example (I think such method could be implemented in a lazy evaluation language like Haskell)
- Lets say we have defined two predicates
A
andB
. - During program execution,
B
was evaluated to "True" andA
was not evaluated - In the later execution we have condition
IF A OR B
- Arguments of "OR" are swapped, and the condition becomes
IF B OR A
- Condition is evaluated to "True" without evaluating
A
Under lazy evaluation, AND and OR are not commutative.
Under eager evaluation (strict semantics), and absence of side effects, they are commutative. I am not aware of any usual optimization being done by some compiler here, though. (Constants folding aside.)
If side effects are present, AND/OR are not commutative, of course. For instance, an Ocaml compiler can not swap the arguments unless it can prove that at least one of them is side effect-free.