📜  SymPy | Python中的 Permutation.next_trotterjohnson()

📅  最后修改于: 2022-05-13 01:54:35.350000             🧑  作者: Mango

SymPy | Python中的 Permutation.next_trotterjohnson()

Permutation.next_trotterjohnson() :next_trotterjohnson()是一个 sympy Python库函数,它以 Trotter-Johnson 顺序返回下一个排列。如果 self 是最后一个排列,则返回 None。

代码 #1:next_trotterjohnson() 示例

# Python code explaining
# SymPy.Permutation.next_trotterjohnson()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from 
# sympy.combinatorics.permutations.Permutation.next_trotterjohnson() method 
  
# creating Permutation
a = Permutation([[2, 0], [3, 1]])
  
b = Permutation([1, 3, 5, 4, 2, 0])
  
  
print ("Permutation a - next_trotterjohnson form : ", a.next_trotterjohnson())
print ("Permutation b - next_trotterjohnson form : ", b.next_trotterjohnson())

输出 :

代码 #2:next_trotterjohnson() 示例– 2D 排列

# Python code explaining
# SymPy.Permutation.next_trotterjohnson()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from 
# sympy.combinatorics.permutations.Permutation.next_trotterjohnson() method 
  
# creating Permutation
a = Permutation([[2, 4, 0], 
                 [3, 1, 2],
                 [1, 5, 6]])
  
  
print ("Permutation a - next_trotterjohnson form : ", a.next_trotterjohnson())

输出 :