|
5 | 5 | {INDEX_OF_FUNCTIONS}
|
6 | 6 |
|
7 | 7 | """
|
| 8 | + |
8 | 9 | #*****************************************************************************
|
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]> |
20 | 12 | #
|
| 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. |
21 | 17 | # http://www.gnu.org/licenses/
|
22 | 18 | #*****************************************************************************
|
23 | 19 |
|
24 |
| -from copy import copy |
25 | 20 | from sage.graphs.digraph import DiGraph
|
26 | 21 | from sage.matrix.constructor import matrix
|
27 | 22 | from sage.rings.integer_ring import ZZ
|
28 |
| -from sage.misc.misc import uniq |
29 | 23 | from sage.misc.lazy_attribute import lazy_attribute
|
30 | 24 | from sage.misc.cachefunc import cached_method
|
| 25 | +from sage.misc.superseded import deprecated_function_alias |
31 | 26 |
|
32 | 27 | class HasseDiagram(DiGraph):
|
33 | 28 | """
|
@@ -707,7 +702,6 @@ def cardinality(self):
|
707 | 702 | """
|
708 | 703 | return self.order()
|
709 | 704 |
|
710 |
| - from sage.misc.superseded import deprecated_function_alias |
711 | 705 | def moebius_function(self,i,j): # dumb algorithm
|
712 | 706 | r"""
|
713 | 707 | Returns the value of the Möbius function of the poset
|
@@ -743,7 +737,6 @@ def moebius_function(self,i,j): # dumb algorithm
|
743 | 737 | return self._moebius_function_values[(i,j)]
|
744 | 738 | mobius_function = deprecated_function_alias(19855, moebius_function)
|
745 | 739 |
|
746 |
| - from sage.misc.superseded import deprecated_function_alias |
747 | 740 | def moebius_function_matrix(self):
|
748 | 741 | r"""
|
749 | 742 | Returns the matrix of the Möbius function of this poset
|
@@ -789,7 +782,6 @@ def moebius_function_matrix(self):
|
789 | 782 | mobius_function_matrix = deprecated_function_alias(19855, moebius_function_matrix)
|
790 | 783 |
|
791 | 784 | # Redefine self.moebius_function
|
792 |
| - from sage.misc.superseded import deprecated_function_alias |
793 | 785 | def _moebius_function_from_matrix(self, i,j):
|
794 | 786 | r"""
|
795 | 787 | Returns the value of the Möbius function of the poset
|
@@ -1703,6 +1695,4 @@ def frattini_sublattice(self):
|
1703 | 1695 | all(e in ms for ms in max_sublats)]
|
1704 | 1696 |
|
1705 | 1697 | from sage.misc.rest_index_of_methods import gen_rest_table_index
|
1706 |
| -import sys |
1707 | 1698 | __doc__ = __doc__.format(INDEX_OF_FUNCTIONS=gen_rest_table_index(HasseDiagram))
|
1708 |
| - |
0 commit comments