]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_LF_ratseries_qa.cc
2006-04-25 Bruno Haible <bruno@clisp.org>
[cln.git] / src / float / transcendental / cl_LF_ratseries_qa.cc
index 94554c741583a849411f8596cb1ee367f6886ce1..f94c7540f9bedf0143055dd21789c1100a4dadcc 100644 (file)
@@ -22,7 +22,7 @@ namespace cln {
 // and T = B*Q*S (all integers). On entry N1 < N2.
 // P will not be computed if a NULL pointer is passed.
 
-static void eval_qa_series_aux (uintL N1, uintL N2,
+static void eval_qa_series_aux (uintC N1, uintC N2,
                                 const cl_qa_series& args,
                                 cl_I* Q, cl_I* T)
 {
@@ -58,7 +58,7 @@ static void eval_qa_series_aux (uintL N1, uintL N2,
                break;
                }
        default: {
-               var uintL Nm = (N1+N2)/2; // midpoint
+               var uintC Nm = (N1+N2)/2; // midpoint
                // Compute left part.
                var cl_I LQ, LT;
                eval_qa_series_aux(N1,Nm,args,&LQ,&LT);
@@ -74,7 +74,7 @@ static void eval_qa_series_aux (uintL N1, uintL N2,
        }
 }
 
-const cl_LF eval_rational_series (uintL N, const cl_qa_series& args, uintC len)
+const cl_LF eval_rational_series (uintC N, const cl_qa_series& args, uintC len)
 {
        if (N==0)
                return cl_I_to_LF(0,len);