From d7f0d8e3d31f5c7093bd82386e4f36f51097ca34 Mon Sep 17 00:00:00 2001 From: "Trevor K. Karn" Date: Sat, 24 Sep 2022 08:55:19 -0500 Subject: [PATCH] Rename n_reduced_words -> number_of_reduced_words --- src/sage/combinat/permutation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sage/combinat/permutation.py b/src/sage/combinat/permutation.py index 15b3e12d2e7..0e42515a4cc 100644 --- a/src/sage/combinat/permutation.py +++ b/src/sage/combinat/permutation.py @@ -219,7 +219,7 @@ - Trevor K. Karn (2022-08-05): Add :meth:`Permutation.n_reduced_words` - Amrutha P, Shriya M, Divya Aggarwal (2022-08-16): Added Multimajor Index. -- Trevor K. Karn (2022-08-05): Add :meth:`Permutation.n_reduced_words` and +- Trevor K. Karn (2022-08-05): Add :meth:`Permutation.number_of_reduced_words` and :meth:`Permutation.stanley_symmetric_function`. - Amrutha P, Shriya M, Divya Aggarwal (2022-08-16): Added Multimajor Index. @@ -3011,7 +3011,7 @@ def rothe_diagram(self): from sage.combinat.diagram import RotheDiagram return RotheDiagram(self) - def n_reduced_words(self): + def number_of_reduced_words(self): r""" Return the number of reduced words of ``self`` without explicitly computing them all.