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)double f(double x, double y, double z, double t) {
double r719930 = x;
double r719931 = y;
double r719932 = z;
double r719933 = r719931 * r719932;
double r719934 = t;
double r719935 = r719934 / r719931;
double r719936 = tanh(r719935);
double r719937 = r719930 / r719931;
double r719938 = tanh(r719937);
double r719939 = r719936 - r719938;
double r719940 = r719933 * r719939;
double r719941 = r719930 + r719940;
return r719941;
}
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))))))