1 (kill(all), load("rncomb"), 0);
10 rncombine(c/b+a/(2*b));
22 rncombine(1/2+a/b+c/d);
25 rncombine(f/(3*e)+1/2+a/b+c/d);
28 rncombine(f/(3*b)+1/2+a/b+c/d);
29 (f+3*a)/(3*b)+c/d+1/2;
31 /* This fails because the result depends on the ordering of symbols */
32 rncombine(f/(3*b)+x+a/b+c/d);
35 rncombine(f/(3*b)+a+x/b+c/d);
38 rncombine(f/(1.2*b)+a+x/b+c/d);
39 (x+.8333333333333334*f)/b+c/d+a;
41 rncombine(f/(1.2*b)+a+x/(1+b)+c/d);
42 x/(b+1)+.8333333333333334*f/b+c/d+a;
44 rncombine(f/(b+1.0)+a+x/(1+b)+c/d);
45 x/(b+1)+f/(b+1.0)+c/d+a;
47 rncombine(f/(b+1)+a+x/(1+b)+c/d);
50 rncombine(f/(1.2*b+1.2)+a+x/(1+b)+c/d);
51 x/(b+1)+f/(1.2*b+1.2)+c/d+a;
53 rncombine(f/(2*b+2)+a+x/(1+b)+c/d);
54 x/(b+1)+f/(2*b+2)+c/d+a;
56 rncombine(f/(2*(b+1))+a+x/(1+b)+c/d);
57 (2*x+f)/(2*(b+1))+c/d+a;