Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add helper method to copy attributes in graphs #39821

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions src/sage/graphs/bipartite_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -2455,12 +2455,8 @@ def _subgraph_by_adding(self, vertices=None, edges=None, edge_property=None, imm

B.add_edges(edges_to_keep)

attributes_to_update = ('_pos', '_assoc')
for attr in attributes_to_update:
if hasattr(self, attr) and getattr(self, attr) is not None:
d = getattr(self, attr)
value = {v: d.get(v, None) for v in B}
setattr(B, attr, value)
B._copy_attribute_from(self, '_pos')
B._copy_attribute_from(self, '_assoc')

return B

Expand Down Expand Up @@ -2519,12 +2515,8 @@ def _subgraph_by_deleting(self, vertices=None, edges=None, inplace=False,
else:
# We make a copy of the graph
B = BipartiteGraph(data=self.edges(sort=True), partition=[self.left, self.right])
attributes_to_update = ('_pos', '_assoc')
for attr in attributes_to_update:
if hasattr(self, attr) and getattr(self, attr) is not None:
d = getattr(self, attr)
value = {v: d.get(v, None) for v in B}
setattr(B, attr, value)
B._copy_attribute_from(self, '_pos')
B._copy_attribute_from(self, '_assoc')
B.name("Subgraph of ({})".format(self.name()))

vertices = set(vertices)
Expand Down
21 changes: 5 additions & 16 deletions src/sage/graphs/digraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1087,8 +1087,8 @@ def to_undirected(self, data_structure=None, sparse=None):
G.add_vertices(self.vertex_iterator())
G.set_vertices(self.get_vertices())
G.add_edges(self.edge_iterator())
if hasattr(self, '_embedding'):
G._embedding = copy(self._embedding)
G._copy_attribute_from(self, '_assoc')
G._copy_attribute_from(self, '_embedding')
G._weighted = self._weighted

if data_structure == "static_sparse":
Expand Down Expand Up @@ -1850,20 +1850,9 @@ def reverse(self, immutable=None):
name = ''
H.name("Reverse of (%s)" % name)

attributes_to_copy = ('_assoc', '_embedding')
for attr in attributes_to_copy:
if hasattr(self, attr):
copy_attr = {}
old_attr = getattr(self, attr)
if isinstance(old_attr, dict):
for v, value in old_attr.items():
try:
copy_attr[v] = value.copy()
except AttributeError:
copy_attr[v] = copy(value)
setattr(H, attr, copy_attr)
else:
setattr(H, attr, copy(old_attr))
# Copy attributes '_assoc' and '_embedding' if set
H._copy_attribute_from(self, '_assoc')
H._copy_attribute_from(self, '_embedding')

if immutable or (immutable is None and self.is_immutable()):
return H.copy(immutable=True)
Expand Down
76 changes: 61 additions & 15 deletions src/sage/graphs/generic_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1220,6 +1220,63 @@ def is_immutable(self):

# Formats

def _copy_attribute_from(self, other, attribute):
r"""
Helper method to copy in ``self`` an attribute from ``other``.

INPUT:

- ``other`` -- the (di)graph from which to copy attributes

- ``attribute`` -- string; the attribute to copy, for example
``_assoc``, ``_embedding``, ``_pos``, etc.

EXAMPLES::

sage: G = graphs.CycleGraph(4)
sage: G.get_pos()
{0: (0.0, 1.0), 1: (-1.0, 0.0), 2: (0.0, -1.0), 3: (1.0, 0.0)}
sage: D = DiGraph(4)
sage: D._copy_attribute_from(G, '_pos')
sage: D.get_pos()
{0: (0.0, 1.0), 1: (-1.0, 0.0), 2: (0.0, -1.0), 3: (1.0, 0.0)}

TESTS::

sage: G = Graph([(0, 1)])
sage: D = DiGraph([(0, 1)])
sage: G.set_vertices({0: graphs.CycleGraph(3), 1: 'abc'})
sage: G.get_vertices()
{0: Cycle graph: Graph on 3 vertices, 1: 'abc'}
sage: D.get_vertices()
{0: None, 1: None}
sage: D._copy_attribute_from(G, '_assoc')
sage: D.get_vertices()
{0: Cycle graph: Graph on 3 vertices, 1: 'abc'}
sage: G.get_vertices()
{0: Cycle graph: Graph on 3 vertices, 1: 'abc'}
sage: G.get_embedding()
sage: G.genus()
0
sage: G.get_embedding()
{0: [1], 1: [0]}
sage: D._copy_attribute_from(G, '_embedding')
sage: D.get_embedding()
{0: [1], 1: [0]}
"""
if hasattr(other, attribute):
copy_attr = {}
old_attr = getattr(other, attribute)
if isinstance(old_attr, dict):
for v, value in old_attr.items():
try:
copy_attr[v] = value.copy()
except AttributeError:
copy_attr[v] = copy(value)
setattr(self, attribute, copy_attr)
else:
setattr(self, attribute, copy(old_attr))

def copy(self, weighted=None, data_structure=None, sparse=None, immutable=None, hash_labels=None):
"""
Change the graph implementation.
Expand Down Expand Up @@ -1493,20 +1550,9 @@ def copy(self, weighted=None, data_structure=None, sparse=None, immutable=None,
weighted=weighted, hash_labels=hash_labels,
data_structure=data_structure)

attributes_to_copy = ('_assoc', '_embedding')
for attr in attributes_to_copy:
if hasattr(self, attr):
copy_attr = {}
old_attr = getattr(self, attr)
if isinstance(old_attr, dict):
for v, value in old_attr.items():
try:
copy_attr[v] = value.copy()
except AttributeError:
copy_attr[v] = copy(value)
setattr(G, attr, copy_attr)
else:
setattr(G, attr, copy(old_attr))
# Copy attributes '_assoc' and '_embedding' if set
G._copy_attribute_from(self, '_assoc')
G._copy_attribute_from(self, '_embedding')

return G

Expand Down Expand Up @@ -12041,7 +12087,7 @@ def get_vertices(self, verts=None):
2: Moebius-Kantor Graph: Graph on 16 vertices}
"""
if verts is None:
verts = list(self)
verts = self

if not hasattr(self, '_assoc'):
return dict.fromkeys(verts, None)
Expand Down
19 changes: 3 additions & 16 deletions src/sage/graphs/orientations.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,22 +186,9 @@ def _initialize_digraph(G, edges, name=None, weighted=None, sparse=None,
name=name,
hash_labels=hash_labels)

D.set_vertices(G.get_vertices())

attributes_to_copy = ('_assoc', '_embedding')
for attr in attributes_to_copy:
if hasattr(G, attr):
copy_attr = {}
old_attr = getattr(G, attr)
if isinstance(old_attr, dict):
for v, value in old_attr.items():
try:
copy_attr[v] = value.copy()
except AttributeError:
copy_attr[v] = copy(value)
setattr(D, attr, copy_attr)
else:
setattr(D, attr, copy(old_attr))
# Copy attributes '_assoc' and '_embedding' if set
D._copy_attribute_from(G, '_assoc')
D._copy_attribute_from(G, '_embedding')

return D

Expand Down
Loading