#15255: Assign correct name to GridGraph
----------------------------+---------------------------------
   Reporter:  dcoudert      |            Owner:
       Type:  enhancement   |           Status:  new
   Priority:  trivial       |        Milestone:  sage-5.13
  Component:  graph theory  |         Keywords:
  Merged in:                |          Authors:  David Coudert
  Reviewers:                |  Report Upstream:  N/A
Work issues:                |           Branch:
     Commit:                |     Dependencies:
   Stopgaps:                |
----------------------------+---------------------------------
 The name assigned to GridGraph was incorrect because the
 {{{networkx.grid_graph(dim)}}} method modifies the input list of
 dimensions. This patch solves this issue.

 Before:
 {{{
 sage: G = graphs.GridGraph([2,3,4])
 sage: G
 Grid Graph for []: Graph on 24 vertices
 sage: G = graphs.Grid2dGraph(4,5)
 sage: G
 2D Grid Graph: Graph on 20 vertices
 }}}

 After:
 {{{
 sage: G = graphs.GridGraph([2,3,4])
 sage: G
 Grid Graph for [2, 3, 4]: Graph on 24 vertices
 sage: G = graphs.Grid2dGraph(4,5)
 sage: G
 2D Grid Graph for (4, 5): Graph on 20 vertices
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/15255>
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/groups/opt_out.

Reply via email to