Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/sort-permutation-on-optimization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@geajs/core": patch
---

### @geajs/core (patch)

- **Sort/reverse permutation O(n) optimization**: Replace O(n^2) nested-loop permutation calculation with a Map-based O(n) index lookup, improving performance on large sorted arrays.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
node_modules
.history
.omc
.serena
.DS_Store
dist
dist-profile
Expand Down
Loading