normalize factors, i.e. make factors monic
| 34 | |
| 35 | /// normalize factors, i.e. make factors monic |
| 36 | static inline |
| 37 | void normalize (CFAFList & L) |
| 38 | { |
| 39 | for (CFAFListIterator i= L; i.hasItem(); i++) |
| 40 | i.getItem()= CFAFactor (i.getItem().factor()/Lc (i.getItem().factor()), |
| 41 | i.getItem().minpoly(), i.getItem().exp()); |
| 42 | } |
| 43 | |
| 44 | /// univariate absolute factorization over Q |
| 45 | /// |
no test coverage detected