RFC: extracting coefficients of a multivariate polynomial



>>There is a command "horner"  which you might consider, especially if you
>>take the
>>result and convert it to a string, which could be used as C code.
>>
>>This works for univariate polynomials; not sure what it means to have a
>>multivariate
>>horner's rule.

With a topological sort of the degrees, the 'exps' list, this is really easy.

>>Good luck.
Thank you