| 491 | */ |
| 492 | |
| 493 | static void ivString(intvec* iv, const char* ch) |
| 494 | { |
| 495 | int nV = iv->length()-1; |
| 496 | Print("\n// intvec %s = ", ch); |
| 497 | |
| 498 | for(int i=0; i<nV; i++) |
| 499 | { |
| 500 | Print("%d, ", (*iv)[i]); |
| 501 | } |
| 502 | Print("%d;", (*iv)[nV]); |
| 503 | } |
| 504 | |
| 505 | #ifdef PRINT_VECTORS |
| 506 | static void MivString(intvec* iva, intvec* ivb, intvec* ivc) |
no test coverage detected