| 953 | |
| 954 | |
| 955 | CanonicalForm firstLC(const CanonicalForm & f) |
| 956 | { // returns the leading coefficient (LC) of level <= 1 |
| 957 | CanonicalForm ret = f; |
| 958 | while(ret.level() > 1) |
| 959 | ret = LC(ret); |
| 960 | return ret; |
| 961 | } |
| 962 | |
| 963 | #ifndef HAVE_NTL |
| 964 | void tryExtgcd( const CanonicalForm & F, const CanonicalForm & G, const CanonicalForm & M, CanonicalForm & result, CanonicalForm & s, CanonicalForm & t, bool & fail ) |
no test coverage detected