Timeout in 10.0m

Use the --timeout flag to change the timeout.

\[x + \left(y \cdot z\right) \cdot \left(\tanh \left(\frac{t}{y}\right) - \tanh \left(\frac{x}{y}\right)\right)\]
x + \left(y \cdot z\right) \cdot \left(\tanh \left(\frac{t}{y}\right) - \tanh \left(\frac{x}{y}\right)\right)
double f(double x, double y, double z, double t) {
        double r1320 = x;
        double r1321 = y;
        double r1322 = z;
        double r1323 = r1321 * r1322;
        double r1324 = t;
        double r1325 = r1324 / r1321;
        double r1326 = tanh(r1325);
        double r1327 = r1320 / r1321;
        double r1328 = tanh(r1327);
        double r1329 = r1326 - r1328;
        double r1330 = r1323 * r1329;
        double r1331 = r1320 + r1330;
        return r1331;
}

Reproduce

herbie shell --seed 2020025 
(FPCore (x y z t)
  :name "SynthBasics:moogVCF from YampaSynth-0.2"
  :precision binary64

  :herbie-target
  (+ x (* y (* z (- (tanh (/ t y)) (tanh (/ x y))))))

  (+ x (* (* y z) (- (tanh (/ t y)) (tanh (/ x y))))))