Fix vector sparse#247
Merged
Merged
Conversation
…pgrade to actions/checkout@v6
evolp
approved these changes
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is for maintenance. Triggered by the migration to "Debian GNU/Linux 13 (trixie)", Elena found that
boost/cstdint.hppis no longer available. This is due to the fact that functionality was meanwhile integrated into C libs; thus we now can#include <cstdint>instead of#include "boost/cstdint.hpp".I furthermore found that ubuntu 20.04 and osx13 are no longer available for github actions and thus dropped 20.04 and switched from osx13 to osx14. This in turn revealed some issues with include/lib paths for the osx runner AND a bug in the
sparse_vectorimplementation. I used claude to find a workaround but don't fully understand if this really fixed the bug - at least it does not lead to failures in our tests AND passed compilation in osx14 :-)Note that the usual mod-tests failed, when compared to truth - as they often do when things changes due to heuristic aspects in the tabulation algorithm. There are still some osx14 tests failing with regards to checkpointing - an issue that I never fully resolved :-/ Please ignore for now.