|
| template<unsigned int Dim, unsigned int Degree1, unsigned int Degree2> |
| Polynomial< Dim, Degree1+Degree2 > | Util::operator* (const Polynomial< Dim, Degree1 > &p1, const Polynomial< Dim, Degree2 > &p2) |
| |
| template<unsigned int Dim, unsigned int Degree1, unsigned int Degree2> |
| Polynomial< Dim, Max< Degree1, Degree2 >::Value > | Util::operator+ (const Polynomial< Dim, Degree1 > &p1, const Polynomial< Dim, Degree2 > &p2) |
| |
| template<unsigned int Dim, unsigned int Degree1, unsigned int Degree2> |
| Polynomial< Dim, Max< Degree1, Degree2 >::Value > | Util::operator- (const Polynomial< Dim, Degree1 > &p1, const Polynomial< Dim, Degree2 > &p2) |
| |
| template<unsigned int Dim, unsigned int Degree> |
| std::ostream & | Util::operator<< (std::ostream &stream, const Polynomial< Dim, Degree > &poly) |
| |
| template<unsigned int Degree1, unsigned int Degree2> |
| Polynomial< 1, Degree1+Degree2 > | Util::operator* (const Polynomial< 1, Degree1 > &p1, const Polynomial< 1, Degree2 > &p2) |
| |
| template<unsigned int Degree1, unsigned int Degree2> |
| Polynomial< 1, Max< Degree1, Degree2 >::Value > | Util::operator+ (const Polynomial< 1, Degree1 > &p1, const Polynomial< 1, Degree2 > &p2) |
| |
| template<unsigned int Degree1, unsigned int Degree2> |
| Polynomial< 1, Max< Degree1, Degree2 >::Value > | Util::operator- (const Polynomial< 1, Degree1 > &p1, const Polynomial< 1, Degree2 > &p2) |
| |
| template<unsigned int Degree> |
| std::ostream & | Util::operator<< (std::ostream &stream, const Polynomial< 1, Degree > &poly) |
| |