| 2625 | } |
| 2626 | |
| 2627 | intvec * hFirstSeries1(ideal S, intvec *modulweight, ideal Q, intvec *wdegree) |
| 2628 | { |
| 2629 | id_LmTest(S, currRing); |
| 2630 | if (Q!= NULL) id_LmTest(Q, currRing); |
| 2631 | |
| 2632 | intvec *hseries1= hSeries(S, modulweight,wdegree, Q); |
| 2633 | if (errorreported) { delete hseries1; hseries1=NULL; } |
| 2634 | return hseries1; |
| 2635 | } |
| 2636 | |
| 2637 | bigintmat* hPoly2BIV(poly h, const ring Qt, const coeffs biv_cf) |
| 2638 | { |
no test coverage detected