Ticket #13664 (closed defect: fixed)
Another bug in add_edge
| Reported by: | ncohen | Owned by: | jason, ncohen, rlm |
|---|---|---|---|
| Priority: | major | Milestone: | sage-5.5 |
| Component: | graph theory | Keywords: | |
| Cc: | nthiery, fhivert, dcoudert | Work issues: | |
| Report Upstream: | N/A | Reviewers: | David Coudert |
| Authors: | Nathann Cohen | Merged in: | sage-5.5.rc0 |
| Dependencies: | Stopgaps: |
Description (last modified by ncohen) (diff)
A bug report from Nicolas Thiery. Since we all work together at the LRI we did not send much new patches, but for sure we find a lot of bugs ! :-P
Nathann
sage: W = WeylGroup(["A",1]) sage: G = W.cayley_graph() sage: Graph(G).degree() [2, 1] sage: h = Graph() sage: h.add_edge(1,2,"a") sage: h.add_edge(1,2,"a") sage: h.degree() [1, 2]
APPLY:
Attachments
Change History
comment:1 Changed 7 months ago by ncohen
- Status changed from new to needs_review
- Description modified (diff)
P.S. : I hate edge labels. I hate multiple edges :-P
Note: See
TracTickets for help on using
tickets.

