Skip to content

Commit 8dd6982

Browse files
committed
remove deprecation 32238
1 parent d6bb25b commit 8dd6982

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/sage/graphs/graph.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -432,8 +432,6 @@
432432
lazy_import('sage.graphs.mcqd', ['mcqd'],
433433
feature=PythonModule('sage.graphs.mcqd', spkg='mcqd'))
434434

435-
from sage.misc.decorators import rename_keyword
436-
437435

438436
class Graph(GenericGraph):
439437
r"""
@@ -6904,7 +6902,6 @@ def cliques_get_clique_bipartite(self, **kwds):
69046902
return BipartiteGraph(networkx.make_clique_bipartite(self.networkx_graph(), **kwds))
69056903

69066904
@doc_index("Algorithmically hard stuff")
6907-
@rename_keyword(deprecation=32238, verbosity='verbose')
69086905
def independent_set(self, algorithm="Cliquer", value_only=False, reduction_rules=True,
69096906
solver=None, verbose=0, *, integrality_tolerance=1e-3):
69106907
r"""
@@ -6999,7 +6996,6 @@ def independent_set(self, algorithm="Cliquer", value_only=False, reduction_rules
69996996
return [u for u in self if u not in my_cover]
70006997

70016998
@doc_index("Algorithmically hard stuff")
7002-
@rename_keyword(deprecation=32238, verbosity='verbose')
70036999
def vertex_cover(self, algorithm="Cliquer", value_only=False,
70047000
reduction_rules=True, solver=None, verbose=0,
70057001
*, integrality_tolerance=1e-3):

0 commit comments

Comments
 (0)