| 433 | /*************** Private Helper Function: FreeVectorArray ************/ |
| 434 | |
| 435 | static void FreeVectorArray(N_Vector *A, int indMax) |
| 436 | { |
| 437 | int j; |
| 438 | |
| 439 | for (j=0; j <= indMax; j++) N_VFree(A[j]); |
| 440 | |
| 441 | free(A); |
| 442 | } |
| 443 | |
| 444 | } |
no test coverage detected