Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Ticket #2915, comment 13


Ignore:
Timestamp:
12/06/18 18:59:42 (5 years ago)
Author:
gkronber
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2915, comment 13

    initial v1  
    11TODO for simplifier:
    2  - square(* (...)) -> (* (square ...)) and same for cube
    3  - square(abs(x)) -> square(x)
    4  - (* (aq ...) const) -> push down constant into aq, constants also include factors
    5  - (* (abs ...) const) -> push down constant into abs (if positive, otherwise keep sign)
     2 - ~~square(* (...)) -> (* (square ...)) and same for cube~~
     3 - ~~square(abs(x)) -> square(x)~~
     4 - ~~(* (aq ...) const) -> push down constant into aq, constants also include factors~~
     5 - ~~(* (abs ...) const) -> push down constant into abs (if positive, otherwise keep sign)~~
    66 - ...?