| 1583 | } |
| 1584 | |
| 1585 | BOOLEAN iiCheckRing(int i) |
| 1586 | { |
| 1587 | if (currRing==NULL) |
| 1588 | { |
| 1589 | #ifdef SIQ |
| 1590 | if (siq<=0) |
| 1591 | { |
| 1592 | #endif |
| 1593 | if (RingDependend(i)) |
| 1594 | { |
| 1595 | WerrorS("no ring active (9)"); |
| 1596 | return TRUE; |
| 1597 | } |
| 1598 | #ifdef SIQ |
| 1599 | } |
| 1600 | #endif |
| 1601 | } |
| 1602 | return FALSE; |
| 1603 | } |
| 1604 | |
| 1605 | poly iiHighCorner(ideal I, int ak) |
| 1606 | { |
no test coverage detected