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

◆ fill()

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

Definition at line 42 of file schur.cpp.

46{
47 int i, j;
48 p = pp;
49 lambda = lamb;
50
51 int next = 1;
52 for (i = 1; p[i] != 0; i++)
53 {
54 int a = lambda[i];
55 for (j = p[i]; j > a; j--)
56 {
57 xloc[next] = i;
58 yloc[next++] = j;
59 }
60 }
61}
int * yloc
Definition schur.hpp:54
int * xloc
Definition schur.hpp:52
int * lambda
Definition schur.hpp:50
int * p
Definition schur.hpp:51

References lambda, p, xloc, and yloc.