* return intvvec = (1,0, ..., 0) * **********************************/
| 1021 | * return intvvec = (1,0, ..., 0) * |
| 1022 | **********************************/ |
| 1023 | intvec* Mivlp(int nR) |
| 1024 | { |
| 1025 | intvec* ivm = new intvec(nR); |
| 1026 | (*ivm)[0] = 1; |
| 1027 | |
| 1028 | return ivm; |
| 1029 | } |
| 1030 | |
| 1031 | //unused |
| 1032 | /***************************************************************************** |
no outgoing calls
no test coverage detected