On Mon, 11 Dec 2006 17:58:39 -0800, David Joyner <[EMAIL PROTECTED]> wrote:
> 5. This seems to indicate a bug: > sage: MS = MatrixSpace(GF(7), 2) > sage: sage: gens = [MS([[1,0],[-1,1]]),MS([[1,1],[0,1]])] > sage: sage: G = MatrixGroup(gens) > sage: G.conjugacy_class_representatives() > [ > [1 0] > [0 1], > [6 0] > [0 6] > ] > It worked correctly in the previous version of SAGE. Yep. Line 523 of matrix_group.py had a stupid Center() in it, so those are the conj classes of the center. Fixed. Thanks! William --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/ -~----------~----~----~----~------~----~------~--~---
