Skip to content
Snippets Groups Projects
Commit 107a54a8 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[doc] Mention improvements of MatrixIndexSet in changelog

parent 4886d18b
No related branches found
No related tags found
1 merge request!527Improve performance of MatrixIndexSet
Pipeline #61460 passed
......@@ -5,6 +5,11 @@ SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
# Master (will become release 2.10)
- The internal storage in `MatrixIndexSet` was changed from `std::set` to a sorted `std::vector`
(with a `std::set` fallback for very dense rows) to improve performance. The stored index
type was changed from `std::size_t` to `uint32_t` to reduce memory consumption and improve
performance. Hence, `MatrixIndexSet` can no longer be used for very large matrices with more
than 2^32 columns.
## Deprecations and removals
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment