glyph icon indicating copy to clipboard operation
glyph copied to clipboard

Constant optimization improvements

Open Ohjeah opened this issue 8 years ago • 1 comments

  • [ ] Do not consider unused constants, e.g. f(x, c0, c1) = c0*x
  • [ ] Improve caching, e.g. f(x, c0, c1) = c0*x is equivalent to f(x, c0, c1) = c1*x with swaped c0 and c1

Ohjeah avatar May 10 '17 05:05 Ohjeah

Should not one of c1, c0 be eliminated instead of swapping them?

markusabel avatar May 10 '17 07:05 markusabel