I replaced the line

    return sum([self._on_basis(*(before+(index,)+after))._lmul_(coeff)
for (index, coeff) in args[self._position]], self._zero)
by
    return sum([ coeff * self._on_basis(*(before+(index,)+after)) for
(index, coeff) in args[self._position]], self._zero)

and the examples in your code still run and my embeddings work as well
as they should (but I see that this might not be the right way to do
it).

C.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-combinat-devel" group.
To post to this group, send email to sage-combinat-de...@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.

Reply via email to