#3879 closed defect (duplicate)
Constructing a c_graph from a DiGraph doubles the edges.
Reported by: | saliola | Owned by: | rlm |
---|---|---|---|
Priority: | major | Milestone: | sage-duplicate/invalid/wontfix |
Component: | graph theory | Keywords: | c_graph |
Cc: | Merged in: | ||
Authors: | Reviewers: | ||
Report Upstream: | Work issues: | ||
Branch: | Commit: | ||
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)]
Change History (2)
comment:1 Changed 13 years ago by
- Resolution set to duplicate
- Status changed from new to closed
comment:2 Changed 13 years ago by
- Milestone changed from sage-3.1 to sage-duplicate/invalid
Note: See
TracTickets for help on using
tickets.
Opps. Browser issues caused a re-submission. This is identical to #3878.