Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 09c288a

Browse files
committed
Do not import deprecated_function_alias in classes
1 parent c690443 commit 09c288a

File tree

3 files changed

+22
-42
lines changed

3 files changed

+22
-42
lines changed

src/sage/combinat/posets/hasse_diagram.py

+8-18
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,24 @@
55
{INDEX_OF_FUNCTIONS}
66
77
"""
8+
89
#*****************************************************************************
9-
# Copyright (C) 2008 Peter Jipsen <[email protected]>,
10-
# Franco Saliola <[email protected]>
11-
#
12-
# Distributed under the terms of the GNU General Public License (GPL)
13-
#
14-
# This code is distributed in the hope that it will be useful,
15-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17-
# General Public License for more details.
18-
#
19-
# The full text of the GPL is available at:
10+
# Copyright (C) 2008 Peter Jipsen <[email protected]>
11+
# Copyright (C) 2008 Franco Saliola <[email protected]>
2012
#
13+
# This program is free software: you can redistribute it and/or modify
14+
# it under the terms of the GNU General Public License as published by
15+
# the Free Software Foundation, either version 2 of the License, or
16+
# (at your option) any later version.
2117
# http://www.gnu.org/licenses/
2218
#*****************************************************************************
2319

24-
from copy import copy
2520
from sage.graphs.digraph import DiGraph
2621
from sage.matrix.constructor import matrix
2722
from sage.rings.integer_ring import ZZ
28-
from sage.misc.misc import uniq
2923
from sage.misc.lazy_attribute import lazy_attribute
3024
from sage.misc.cachefunc import cached_method
25+
from sage.misc.superseded import deprecated_function_alias
3126

3227
class HasseDiagram(DiGraph):
3328
"""
@@ -707,7 +702,6 @@ def cardinality(self):
707702
"""
708703
return self.order()
709704

710-
from sage.misc.superseded import deprecated_function_alias
711705
def moebius_function(self,i,j): # dumb algorithm
712706
r"""
713707
Returns the value of the Möbius function of the poset
@@ -743,7 +737,6 @@ def moebius_function(self,i,j): # dumb algorithm
743737
return self._moebius_function_values[(i,j)]
744738
mobius_function = deprecated_function_alias(19855, moebius_function)
745739

746-
from sage.misc.superseded import deprecated_function_alias
747740
def moebius_function_matrix(self):
748741
r"""
749742
Returns the matrix of the Möbius function of this poset
@@ -789,7 +782,6 @@ def moebius_function_matrix(self):
789782
mobius_function_matrix = deprecated_function_alias(19855, moebius_function_matrix)
790783

791784
# Redefine self.moebius_function
792-
from sage.misc.superseded import deprecated_function_alias
793785
def _moebius_function_from_matrix(self, i,j):
794786
r"""
795787
Returns the value of the Möbius function of the poset
@@ -1703,6 +1695,4 @@ def frattini_sublattice(self):
17031695
all(e in ms for ms in max_sublats)]
17041696

17051697
from sage.misc.rest_index_of_methods import gen_rest_table_index
1706-
import sys
17071698
__doc__ = __doc__.format(INDEX_OF_FUNCTIONS=gen_rest_table_index(HasseDiagram))
1708-

src/sage/combinat/posets/incidence_algebras.py

+7-11
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,24 @@
22
r"""
33
Incidence Algebras
44
"""
5+
56
#*****************************************************************************
67
# Copyright (C) 2014 Travis Scrimshaw <tscrim at ucdavis.edu>
78
#
8-
# Distributed under the terms of the GNU General Public License (GPL)
9-
#
10-
# This code is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
# General Public License for more details.
14-
#
15-
# The full text of the GPL is available at:
16-
#
9+
# This program is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 2 of the License, or
12+
# (at your option) any later version.
1713
# http://www.gnu.org/licenses/
1814
#*****************************************************************************
15+
1916
from sage.misc.cachefunc import cached_method
2017
from sage.misc.lazy_attribute import lazy_attribute
2118
from sage.categories.algebras import Algebras
2219
from sage.categories.finite_enumerated_sets import FiniteEnumeratedSets
2320
from sage.combinat.free_module import CombinatorialFreeModule
2421
from sage.matrix.matrix_space import MatrixSpace
22+
from sage.misc.superseded import deprecated_function_alias
2523

2624
from copy import copy
2725

@@ -226,7 +224,6 @@ def zeta(self):
226224
"""
227225
return self.sum(self.basis())
228226

229-
from sage.misc.superseded import deprecated_function_alias
230227
@cached_method
231228
def moebius(self):
232229
"""
@@ -570,7 +567,6 @@ def zeta(self):
570567
"""
571568
return self.sum(self.basis())
572569

573-
from sage.misc.superseded import deprecated_function_alias
574570
@cached_method
575571
def moebius(self):
576572
"""

src/sage/combinat/posets/posets.py

+7-13
Original file line numberDiff line numberDiff line change
@@ -227,19 +227,15 @@
227227
Classes and functions
228228
---------------------
229229
"""
230+
230231
#*****************************************************************************
231-
# Copyright (C) 2008 Peter Jipsen <[email protected]>,
232-
# Franco Saliola <[email protected]>
233-
#
234-
# Distributed under the terms of the GNU General Public License (GPL)
235-
#
236-
# This code is distributed in the hope that it will be useful,
237-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
238-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
239-
# General Public License for more details.
240-
#
241-
# The full text of the GPL is available at:
232+
# Copyright (C) 2008 Peter Jipsen <[email protected]>
233+
# Copyright (C) 2008 Franco Saliola <[email protected]>
242234
#
235+
# This program is free software: you can redistribute it and/or modify
236+
# it under the terms of the GNU General Public License as published by
237+
# the Free Software Foundation, either version 2 of the License, or
238+
# (at your option) any later version.
243239
# http://www.gnu.org/licenses/
244240
#*****************************************************************************
245241

@@ -3057,7 +3053,6 @@ def cardinality(self):
30573053
"""
30583054
return Integer(self._hasse_diagram.order())
30593055

3060-
from sage.misc.superseded import deprecated_function_alias
30613056
def moebius_function(self,x,y):
30623057
r"""
30633058
Returns the value of the Möbius function of the poset on the
@@ -3095,7 +3090,6 @@ def moebius_function(self,x,y):
30953090
return self._hasse_diagram.moebius_function(i,j)
30963091
mobius_function = deprecated_function_alias(19855, moebius_function)
30973092

3098-
from sage.misc.superseded import deprecated_function_alias
30993093
def moebius_function_matrix(self, ring = ZZ, sparse = False):
31003094
r"""
31013095
Returns a matrix whose ``(i,j)`` entry is the value of the Möbius

0 commit comments

Comments
 (0)