Skip to content

Commit

Permalink
sagemathgh-38919: preserve backend when using pickling/unpikling
Browse files Browse the repository at this point in the history
    
Fix sagemath#38900.

The data structure of the graph was not stored. We add it to the stored
data.

### 📝 Checklist

<!-- Put an `x` in all the boxes that apply. -->

- [x] The title is concise and informative.
- [x] The description explains in detail what this PR is about.
- [x] I have linked a relevant issue or discussion.
- [x] I have created tests covering the changes.
- [x] I have updated the documentation and checked the documentation
preview.

### ⌛ Dependencies

<!-- List all open PRs that this PR logically depends on. For example,
-->
<!-- - sagemath#12345: short description why this is a dependency -->
<!-- - sagemath#34567: ... -->
    
URL: sagemath#38919
Reported by: David Coudert
Reviewer(s): Travis Scrimshaw
  • Loading branch information
Release Manager committed Nov 5, 2024
2 parents fafb333 + d45dac9 commit d50b2c9
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions src/sage/graphs/base/graph_backends.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,8 @@ cdef class GenericGraphBackend(SageObject):
produces a copy of ``self``. The function returned is always
:func:`unpickle_graph_backend`.
EXAMPLES:
Pickling of the static graph backend makes pickling of immutable
graphs and digraphs work::
Expand Down Expand Up @@ -703,20 +705,30 @@ cdef class GenericGraphBackend(SageObject):
sage: gi = g.copy(immutable=True)
sage: loads(dumps(gi)) == gi
True
TESTS:
Check that :issue:`38900` is fixed::
sage: from itertools import product
sage: for sparse, immutable in product([True, False], [True, False]):
....: G = Graph([[0, 1, 2], [(0, 1)]], sparse=sparse, immutable=immutable)
....: H = loads(dumps(G))
....: if type(G._backend) != type(H._backend):
....: print(sparse, immutable, type(G._backend), type(H._backend))
"""
from sage.graphs.base.static_sparse_backend import StaticSparseBackend
from sage.graphs.base.sparse_graph import SparseGraphBackend
from sage.graphs.base.dense_graph import DenseGraphBackend

# implementation, data_structure, multiedges, directed, loops
# data_structure, multiedges, directed, loops
if isinstance(self, CGraphBackend):
implementation = "c_graph"
if isinstance(self, SparseGraphBackend):
data_structure = "sparse"
elif isinstance(self, DenseGraphBackend):
data_structure = "dense"
elif isinstance(self, StaticSparseBackend):
implementation = "static_sparse"
data_structure = "static_sparse"
else:
raise Exception
multiedges = (<CGraphBackend> self)._multiple_edges
Expand All @@ -735,7 +747,8 @@ cdef class GenericGraphBackend(SageObject):
return (unpickle_graph_backend,
(directed, vertices, edges,
{'loops': loops,
'multiedges': multiedges}))
'multiedges': multiedges,
'data_structure': data_structure}))


def unpickle_graph_backend(directed, vertices, edges, kwds):
Expand Down Expand Up @@ -779,6 +792,5 @@ def unpickle_graph_backend(directed, vertices, edges, kwds):
else:
from sage.graphs.graph import Graph as constructor

G = constructor(data=edges, **kwds)
G.add_vertices(vertices)
G = constructor(data=[vertices, edges], format='vertices_and_edges', **kwds)
return G._backend

0 comments on commit d50b2c9

Please sign in to comment.