atlas  0.6
polynomials_fwd.h
Go to the documentation of this file.
1 
5 /*
6  This is polynomials_fwd.h
7 
8  Copyright (C) 2004,2005 Fokko du Cloux
9  part of the Atlas of Lie Groups and Representations
10 
11  For license information see the LICENSE file
12 */
13 
14 #ifndef POLYNOMIALS_FWD_H /* guard against multiple inclusions */
15 #define POLYNOMIALS_FWD_H
16 
17 namespace atlas {
18 
19 namespace polynomials {
20 
21 template<typename C> class Polynomial; // |C| can be any arithmetic type
22 template<typename C> class Safe_Poly; // here |C| must be unsigned integral
23 
24 // template<typename C> class LaurentPolynomial;
25 
26 typedef size_t Degree; // exponent range; not stored, so no need making it short
27 
28 }
29 
30 }
31 
32 #endif
size_t Degree
Definition: Atlas.h:122
Definition: Atlas.h:38