Boost logo

Boost-Commit :

From: lord.zerom1nd_at_[hidden]
Date: 2008-08-29 09:11:48


Author: kieliszczyk
Date: 2008-08-29 09:11:47 EDT (Fri, 29 Aug 2008)
New Revision: 48447
URL: http://svn.boost.org/trac/boost/changeset/48447

Log:
poly
Text files modified:
   sandbox/SOC/2008/polynomial/libs/docs/index.html | 18 +++++++++---------
   1 files changed, 9 insertions(+), 9 deletions(-)

Modified: sandbox/SOC/2008/polynomial/libs/docs/index.html
==============================================================================
--- sandbox/SOC/2008/polynomial/libs/docs/index.html (original)
+++ sandbox/SOC/2008/polynomial/libs/docs/index.html 2008-08-29 09:11:47 EDT (Fri, 29 Aug 2008)
@@ -396,23 +396,23 @@
 <h3><a name="special_forms">Special forms</a></h3>
 
 <p>
-Sometimes in calculations special polynomial forms are needed. Header &lt;boost/math/tools/polynomial/special_forms&gt; simply includes the headers with functions that can calculate four forms: Chebyshev, Hermite, Laguerre and Legendre. The <b>polynomial</b> class uses these algorithms and make them very easy in use. The following functions are provided:
+Sometimes in calculations special polynomial forms are needed. Header &lt;boost/math/tools/polynomial/special_forms&gt; simply includes the headers with functions that can calculate four forms: Chebyshev, Hermite, Laguerre and Legendre. The <b>polynomial</b> class utilizes these algorithms and make them very easy in use. The following functions are provided:
 <pre>
   namespace boost {
   namespace math {
   namespace tools {
 
- template<typename FieldType, typename Size>
- polynomial<FieldType> chebyshev_form(const Size sz);
+ template&lt;typename FieldType, typename Size&gt;
+ polynomial&lt;FieldType&gt; chebyshev_form(const Size sz);
 
- template<typename FieldType, typename Size>
- polynomial<FieldType> hermite_form(const Size sz);
+ template&lt;typename FieldType, typename Size&gt;
+ polynomial&lt;FieldType&gt; hermite_form(const Size sz);
 
- template<typename FieldType, typename Size>
- polynomial<FieldType> laguerre_form(const Size sz);
+ template&lt;typename FieldType, typename Size&gt;
+ polynomial&lt;FieldType&gt; laguerre_form(const Size sz);
 
- template<typename FieldType, typename Size>
- polynomial<FieldType> legendre_form(const Size sz);
+ template&lt;typename FieldType, typename Size&gt;
+ polynomial&lt;FieldType&gt; legendre_form(const Size sz);
 
   } // namespace tools
   } // namespace math


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk