Skip to content

Commit 0ab3191

Browse files
committed
Before and after for TranspositionList type in changelog
1 parent 35e08d9 commit 0ab3191

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,15 @@ Non-backwards compatible changes
786786
* In `Data.Fin.Permutation.Transposition.List`, the transpositions are now restricted
787787
to being pairs of distinct elements.
788788
789+
Previously:
790+
```agda
791+
TranspositionList n = List (Fin n × Fin n)
792+
```
793+
Now:
794+
```agda
795+
TranspositionList n = List (∃₂ λ (i j : Fin n) → i ≢ j)
796+
```
797+
789798
Major improvements
790799
------------------
791800

0 commit comments

Comments
 (0)