Commit df848e82 by Andreas Tobler Committed by Andreas Tobler

poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.

2007-04-01  Andreas Tobler  <a.tobler@schweiz.org>

	* include/tr1/poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.

From-SVN: r123410
parent 26cb3993
2007-04-01 Andreas Tobler <a.tobler@schweiz.org>
* include/tr1/poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.
2007-04-01 Richard Henderson <rth@redhat.com>
* include/tr1/poly_laguerre.tcc: s/__alpha/__alpha1/g.
......
......@@ -275,7 +275,7 @@ _GLIBCXX_BEGIN_NAMESPACE(_GLIBCXX_TR1)
else if (__n > 10000000 && _Tp(__alpha1) > -_Tp(1)
&& __x < _Tp(2) * (_Tp(__alpha1) + _Tp(1)) + _Tp(4 * __n))
return __poly_laguerre_large_n(__n, __alpha1, __x);
else if (_Tp(__alpha) >= _Tp(0)
else if (_Tp(__alpha1) >= _Tp(0)
|| (__x > _Tp(0) && _Tp(__alpha1) < -_Tp(__n + 1)))
return __poly_laguerre_recursion(__n, __alpha1, __x);
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment