Ticket #3878 (closed defect: fixed)

Opened 5 years ago

Last modified 5 years ago

[with patch, positive review] Constructing a c_graph from a DiGraph doubles the edges.

Reported by: saliola Owned by: rlm
Priority: major Milestone: sage-3.1
Component: graph theory Keywords: c_graph
Cc: Work issues:
Report Upstream: Reviewers:
Authors: Merged in:
Dependencies: Stopgaps:

Description

sage: D = DiGraph({0:[1]})
sage: D.edges()
[(0, 1, None)]
sage: DiGraph(D).edges()
[(0, 1, None)]
sage: DiGraph(D,implementation="c_graph").edges()
[(0, 1, None), (1, 0, None)]

Attachments

trac_3878-fixed.patch Download (1.4 KB) - added by saliola 5 years ago.

Change History

Changed 5 years ago by saliola

comment:1 Changed 5 years ago by saliola

  • Summary changed from Constructing a c_graph from a DiGraph doubles the edges. to [with patch, needs review] Constructing a c_graph from a DiGraph doubles the edges.

comment:2 Changed 5 years ago by rlm

  • Summary changed from [with patch, needs review] Constructing a c_graph from a DiGraph doubles the edges. to [with patch, positive review] Constructing a c_graph from a DiGraph doubles the edges.

D'OH

comment:3 Changed 5 years ago by mabshoff

  • Status changed from new to closed
  • Resolution set to fixed

Merged in Sage 3.1.final

Note: See TracTickets for help on using tickets.