* define a lexicographic order matrix as intvec * *****************************************************************************/
| 1400 | * define a lexicographic order matrix as intvec * |
| 1401 | *****************************************************************************/ |
| 1402 | intvec* MivMatrixOrderlp(int nV) |
| 1403 | { |
| 1404 | int i; |
| 1405 | intvec* ivM = new intvec(nV*nV); |
| 1406 | |
| 1407 | for(i=0; i<nV; i++) |
| 1408 | { |
| 1409 | (*ivM)[i*nV + i] = 1; |
| 1410 | } |
| 1411 | return(ivM); |
| 1412 | } |
| 1413 | |
| 1414 | |
| 1415 | /***************************************************************************** |
no outgoing calls
no test coverage detected