\[x + x \cdot x\]
Test:
Expression 2, p15
Bits:
128 bits
Bits error versus x
Time: 4.1 s
Input Error: 0.0
Output Error: 0
Log:
Profile: 🕒
\((x * x + x)_*\)
  1. Started with
    \[x + x \cdot x\]
    0.0
  2. Applied simplify to get
    \[\color{red}{x + x \cdot x} \leadsto \color{blue}{(x * x + x)_*}\]
    0

  3. Removed slow pow expressions

Original test:


(lambda ((x default))
  #:name "Expression 2, p15"
  (+ x (* x x))
  #:target
  (* (+ 1.0 x) x))