@@ -716,153 +716,6 @@ def normalize(self, inplace=False):
716
716
resl [i ] = resl [i ].normalize ()
717
717
resl .sort (key = lambda t : t .sort_key ())
718
718
719
- def dendrog_cmp (self , other ):
720
- r"""
721
- Return `-1` if ``self`` is smaller than ``other`` in the
722
- dendrographical order; return `0` if they are equal;
723
- return `1` if ``other`` is smaller.
724
-
725
- .. NOTE:: This is deprecated.
726
-
727
- The dendrographical order is a total order on the set of
728
- unlabelled ordered rooted trees; it is defined recursively
729
- as follows: An ordered rooted tree `T` with children
730
- `T_1, T_2, \ldots, T_a` is smaller than an
731
- ordered rooted tree `S` with children
732
- `S_1, S_2, \ldots, S_b` if either `a < b` or (`a = b`
733
- and there exists a `1 \leq i \leq a` such that
734
- `T_1 = S_1, T_2 = S_2, \ldots, T_{i-1} = S_{i-1}` and
735
- `T_i < S_i`).
736
-
737
- INPUT:
738
-
739
- - ``other`` -- an ordered rooted tree
740
-
741
- OUTPUT:
742
-
743
- - `-1`, if ``smaller < other`` with respect to the
744
- dendrographical order.
745
- - `0`, if ``smaller == other`` (as unlabelled ordered
746
- rooted trees).
747
- - `1`, if ``smaller > other`` with respect to the
748
- dendrographical order.
749
-
750
- .. NOTE::
751
-
752
- It is possible to provide labelled trees to this
753
- method; however, their labels are ignored.
754
-
755
- EXAMPLES::
756
-
757
- sage: OT = OrderedTree
758
- sage: ta = OT([])
759
- sage: tb = OT([[], [], [[], []]])
760
- sage: tc = OT([[], [[], []], []])
761
- sage: td = OT([[[], []], [], []])
762
- sage: te = OT([[], []])
763
- sage: tf = OT([[], [], []])
764
- sage: tg = OT([[[], []], [[], []]])
765
- sage: l = [ta, tb, tc, td, te, tf, tg]
766
- sage: [l[i].dendrog_cmp(l[j]) for i in range(7) for j in range(7)]
767
- doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
768
- See http://trac.sagemath.org/21148 for details.
769
- doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
770
- See http://trac.sagemath.org/21148 for details.
771
- [0, -1, -1, -1, -1, -1, -1,
772
- 1, 0, -1, -1, 1, 1, 1,
773
- 1, 1, 0, -1, 1, 1, 1,
774
- 1, 1, 1, 0, 1, 1, 1,
775
- 1, -1, -1, -1, 0, -1, -1,
776
- 1, -1, -1, -1, 1, 0, 1,
777
- 1, -1, -1, -1, 1, -1, 0]
778
- """
779
- from sage .misc .superseded import deprecation
780
- deprecation (21148 , "Please use 'sort_key' to sort." )
781
-
782
- if len (self ) < len (other ):
783
- return - 1
784
- if len (self ) > len (other ):
785
- return 1
786
- for (a , b ) in zip (self , other ):
787
- comp = a .dendrog_cmp (b )
788
- if comp != 0 :
789
- return comp
790
- return 0
791
-
792
- @cached_method
793
- def dendrog_normalize (self , inplace = False ):
794
- r"""
795
- Return the normalized tree of the *unlabelled* ordered rooted
796
- tree ``self`` with respect to the dendrographical order.
797
-
798
- INPUT:
799
-
800
- - ``inplace`` -- (default ``False``) boolean; if ``True``,
801
- then ``self`` is modified and nothing returned; otherwise
802
- the normalized tree is returned
803
-
804
- .. NOTE:: This is deprecated.
805
-
806
- The normalized tree of an unlabelled ordered rooted tree
807
- `t` with respect to the dendrographical order is an
808
- unlabelled ordered rooted tree defined recursively
809
- as follows: We first replace all children of `t` by their
810
- normalized trees (with respect to the dendrographical
811
- order); then, we reorder these children in weakly
812
- increasing order with respect to the dendrographical order
813
- (:meth:`dendrog_cmp`).
814
-
815
- This can be viewed as an alternative to :meth:`normalize`
816
- for the case of unlabelled ordered rooted trees.
817
-
818
- EXAMPLES::
819
-
820
- sage: OT = OrderedTree
821
- sage: ta = OT([[],[[]]])
822
- sage: tb = OT([[[]],[]])
823
- sage: ta.dendrog_normalize() == tb.dendrog_normalize()
824
- doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
825
- See http://trac.sagemath.org/21148 for details.
826
- doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
827
- See http://trac.sagemath.org/21148 for details.
828
- doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
829
- See http://trac.sagemath.org/21148 for details.
830
- True
831
- sage: ta == tb
832
- False
833
- sage: ta.dendrog_normalize()
834
- [[], [[]]]
835
-
836
- An example with inplace normalization::
837
-
838
- sage: OT = OrderedTree
839
- sage: ta = OT([[],[[]]])
840
- sage: tb = OT([[[]],[]])
841
- sage: ta.dendrog_normalize(inplace=True); ta
842
- doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
843
- See http://trac.sagemath.org/21148 for details.
844
- [[], [[]]]
845
- sage: tb.dendrog_normalize(inplace=True); tb
846
- [[], [[]]]
847
- """
848
- from sage .misc .superseded import deprecation
849
- deprecation (21148 , "Please use 'sort_key' to sort." )
850
-
851
- def dendrog_cmp (a , b ):
852
- return a .dendrog_cmp (b )
853
- if not inplace :
854
- with self .clone () as res :
855
- resl = res ._get_list ()
856
- for i in range (len (resl )):
857
- resl [i ] = resl [i ].dendrog_normalize ()
858
- resl .sort (cmp = dendrog_cmp )
859
- return res
860
-
861
- resl = self ._get_list ()
862
- for i in range (len (resl )):
863
- resl [i ] = resl [i ].dendrog_normalize ()
864
- resl .sort (cmp = dendrog_cmp )
865
-
866
719
867
720
# Abstract class to serve as a Factory no instance are created.
868
721
class OrderedTrees (UniqueRepresentation , Parent ):
0 commit comments