previous up next
Go backward to `desing/maketree`
Go up to Procedures
Go forward to `desing/next_comb`

`desing/monsequence`

Computation of the list of monomials up to a given degree in a recursive fashion.

Input:
 
S
the list of variables to build monomials
mon
the monomial which is computed in the previous recursive call (it should be set to 1 at the initial call),
d
the degree up to which generate monomials.
Output:
-
The procedure uses the global variable, desingmonseq, which has to be set to the empty list before calling the the procedure. The resulting monomial sequence is obtained in the desingmonseq variable.
previous up next