MCPcopy Create free account
hub / github.com/Singular/Singular / MivMatrixOrderlp

Function MivMatrixOrderlp

Singular/walk.cc:1402–1412  ·  view source on GitHub ↗

* define a lexicographic order matrix as intvec * *****************************************************************************/

Source from the content-addressed store, hash-verified

1400 * define a lexicographic order matrix as intvec *
1401 *****************************************************************************/
1402intvec* 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/*****************************************************************************

Callers 11

jjSYSTEMFunction · 0.85
LastGBFunction · 0.85
Rec_LastGBFunction · 0.85
NewVectorlpFunction · 0.85
MpwalkFunction · 0.85
MprwalkFunction · 0.85
MfwalkFunction · 0.85
MfrwalkFunction · 0.85
TranMImprovwalkFunction · 0.85
walk.ccFile · 0.85
Mpwalk_MAltwalk1Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected