#16367: IncidenceStructure.automorphism_group : correct labels
-----------------------------+---------------------------------
   Reporter:  ncohen         |            Owner:
       Type:  enhancement    |           Status:  new
   Priority:  major          |        Milestone:  sage-6.3
  Component:  combinatorics  |         Keywords:
  Merged in:                 |          Authors:  Nathann Cohen
  Reviewers:                 |  Report Upstream:  N/A
Work issues:                 |           Branch:
     Commit:                 |     Dependencies:  #16358
   Stopgaps:                 |
-----------------------------+---------------------------------
 PermutationGroup can handle permutations on any set, and not only 1..n.
 Given that the designs are defined on `range(v)`, let us avoid some
 mistakes !

 Before
 {{{
 sage: designs.BalancedIncompleteBlockDesign(7,3).automorphism_group()
 Permutation Group with generators [(4,5)(6,7), (4,6)(5,7), (2,3)(6,7),
 (2,4)(3,5), (1,2)(5,6)]
 sage: designs.BalancedIncompleteBlockDesign(7,3).points()
 [0, 1, 2, 3, 4, 5, 6]
 }}}

 After

 {{{
 sage: designs.BalancedIncompleteBlockDesign(7,3).automorphism_group()
 Permutation Group with generators [(2,4)(5,6), (2,5)(4,6), (1,2)(3,4),
 (0,1)(4,6)]
 sage: designs.BalancedIncompleteBlockDesign(7,3).points()
 [0, 1, 2, 3, 4, 5, 6]
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/16367>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to