| 152 | #endif /* NOSTREAMIO */ |
| 153 | |
| 154 | static CanonicalForm conv2mipo ( const CanonicalForm & mipo, const Variable & alpha ) |
| 155 | { |
| 156 | CanonicalForm result; |
| 157 | for ( CFIterator i = mipo; i.hasTerms(); i++ ) |
| 158 | result += i.coeff() * power( alpha, i.exp() ); |
| 159 | return result; |
| 160 | } |
| 161 | |
| 162 | Variable rootOf( const CanonicalForm & mipo, char name ) |
| 163 | { |