Skip to content

Commit

Permalink
next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Cobord committed Oct 6, 2023
1 parent 963c385 commit ddeb870
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions plabic/ba_permutation.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,7 @@ def pick_commuting_sublist(available_letters : List[int]) -> List[int]:
for letter in available_letters[1:]:
if (letter - last_added) != 1 and (letter-last_added) != self.my_n - 1:
commuting_letters.append(letter)
last_added = letter
return commuting_letters

my_identity = AffinePermutation.identity(self.my_n)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "plabic"
version = "0.2.0"
version = "0.3.0"
authors = [
{ name="Ammar Husain", email="[email protected]" },
]
Expand Down

0 comments on commit ddeb870

Please sign in to comment.