| 423 | |
| 424 | #ifdef CHECK_IDEAL_MWALK |
| 425 | static void idString(ideal L, const char* st) |
| 426 | { |
| 427 | int i, nL = IDELEMS(L); |
| 428 | |
| 429 | Print("\n// ideal %s = ", st); |
| 430 | for(i=0; i<nL-1; i++) |
| 431 | { |
| 432 | Print(" %s, ", pString(L->m[i])); |
| 433 | } |
| 434 | Print(" %s;", pString(L->m[nL-1])); |
| 435 | } |
| 436 | #endif |
| 437 | /* |
| 438 | #if defined(CHECK_IDEAL_MWALK) || defined(ENDWALKS) |
no test coverage detected