#9036: Graph.canonical_label(certify=True, edge_labels=True) returns a name
error
-------------------------------+--------------------------------------------
Reporter: stumpc5 | Owner: jason, ncohen, rlm
Type: defect | Status: new
Priority: minor | Milestone:
Component: graph theory | Keywords: labelled graph isomorphism
Author: Christian Stump | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
-------------------------------+--------------------------------------------
The method canonical_label() for Graph and DiGraph does not take the
parameters 'certify=True' and 'edge_labels=True' at the same time:
{{{
sage: g = Graph()
sage: g.canonical_label()
Graph on 0 vertices
sage: g.canonical_label(certify=True)
(Graph on 0 vertices, {})
sage: g.canonical_label(edge_labels=True)
Graph on 0 vertices
sage: g.canonical_label(certify=True, edge_labels=True)
...
NameError: global name 'relabeling' is not defined
}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9036>
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 post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.