Skip to content

Commit 7b5752e

Browse files
committed
enable access to some methods in sage/graphs/graph_decompositions
1 parent f3acd42 commit 7b5752e

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/sage/graphs/graph.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9974,6 +9974,8 @@ def bipartite_double(self, extended=False):
99749974
from sage.graphs.graph_decompositions.vertex_separation import pathwidth
99759975
from sage.graphs.graph_decompositions.tree_decomposition import treelength
99769976
from sage.graphs.graph_decompositions.clique_separators import atoms_and_clique_separators
9977+
from sage.graphs.graph_decompositions.bandwidth import bandwidth
9978+
from sage.graphs.graph_decompositions.cutwidth import cutwidth
99779979
from sage.graphs.matchpoly import matching_polynomial
99789980
from sage.graphs.cliquer import all_max_clique as cliques_maximum
99799981
from sage.graphs.cliquer import all_cliques

src/sage/graphs/graph_decompositions/bandwidth.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# cython: binding=True
12
r"""
23
Bandwidth of undirected graphs
34

src/sage/graphs/graph_decompositions/cutwidth.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# cython: binding=True
12
r"""
23
Cutwidth
34

0 commit comments

Comments
 (0)