Macaulay2 Engine
Loading...
Searching...
No Matches

◆ fill()

void tableau2::fill ( int * lamb,
int * pp )
private

Definition at line 50 of file schur2.cpp.

54{
55 int i, j;
56 p = pp; // FLAG: why is this here?
57 lambda = lamb; // FLAG: why is this here?
58
59 int next = 1;
60 for (i = 1; i < p[0]; i++)
61 {
62 int a = lambda[i];
63 for (j = p[i]; j > a; j--)
64 {
65 xloc[next] = i;
66 yloc[next++] = j;
67 }
68 }
69 // display();
70}
int * lambda
Definition schur2.hpp:60
int * xloc
Definition schur2.hpp:62
int * yloc
Definition schur2.hpp:64
int * p
Definition schur2.hpp:61

References lambda, p, xloc, and yloc.