Skip to content

Commit 40e4888

Browse files
committed
Before and after for TranspositionList type in changelog
1 parent 69b2101 commit 40e4888

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,15 @@ Non-backwards compatible changes
540540
* In `Data.Fin.Permutation.Transposition.List`, the transpositions are now restricted
541541
to being pairs of distinct elements.
542542
543+
Previously:
544+
```agda
545+
TranspositionList n = List (Fin n × Fin n)
546+
```
547+
Now:
548+
```agda
549+
TranspositionList n = List (∃₂ λ (i j : Fin n) → i ≢ j)
550+
```
551+
543552
Major improvements
544553
------------------
545554

0 commit comments

Comments
 (0)