inserts p in I on pos */
| 73 | BOOLEAN idInsertPoly (ideal h1,poly h2); /* h1 + h2 */ |
| 74 | BOOLEAN idInsertPolyOnPos (ideal I,poly p,int pos); /* inserts p in I on pos */ |
| 75 | inline BOOLEAN idInsertPolyWithTests (ideal h1, const int validEntries, const poly h2, const bool zeroOk, const bool duplicateOk) |
| 76 | { |
| 77 | return id_InsertPolyWithTests (h1, validEntries, h2, zeroOk, duplicateOk, currRing); |
| 78 | } |
| 79 | |
| 80 | |
| 81 | /* h1 + h2 */ |
no test coverage detected