define t (x,y,d,s,t) { auto u, v, w, i, b, c; if (s >= t) { "Bad Scales. Try again. "; return; } for (i = x; i < y; i += d) { scale = s; u = f(i); scale = t; v = f(i); scale = s; w = v / 1; b += 1; if (u != w) { c += 1; " Failed: " " index = "; i; " val1 = "; u; " val2 = "; v; " " } } " Total tests: "; b; " Total failures: "; c; " Percent failed: "; scale = 2; c*100/b; } /* b = begining scale value, l = limit scale value, i = increment scale value. if b is set to a non-zero value before this file is executed, b, l and i are not reset. */ if (b == 0) { b = 10; l = 61; i = 10; } " Checking e(x)" define f(x) { return (e(x)) } for (s=10; s