← Back to team overview

syfi team mailing list archive

Re: [HG syfi] Implemented a sort of CSE in Python, not well tested yet.

 

Martin Sandve Alnæs wrote:
Common Subexpression Elimination.

Basically, given:
b = x + y + z

it can find:
a = x + y
b = a + z

but it's not optimal.


ok!

/Anders


References