Open
Conversation
…a source in install targets.
Adjacency matrix is by nature bidirectional and one can see that the concept was mostly implemented before. That implementation missed the degree function(s). These functions are implemented in this commit and the traversal_category is updated to meet the concept requirements. Tests are also added, though they are a bit shallow in the sense that they seem to omit intensive algorithms.
Fix build for clang.
Remove Boost.Bind usages, replace with lambda
…-cpp-attempt2b examples: C++11: Use list initialization instead of push_back()
Fixed wrong link in grid_graph documentation
Make adjacency_matrix implement BidirectionalGraph concept
…-cpp-attempt2 examples: C++11: Some use of range-based for loops
Specify path of weighted_matching.dat via Jamfile
Add support for modular build structure.
Fix multiplicity value comparison
Add few details about the on_enter_loop visitor event that is not documented
Co-authored-by: Jeremy W. Murphy <[email protected]>
Update r_c_shortest_paths.html
Use snprintf if available as some compilers (clang 14.0) issue deprecation warnings for sprintf, see issue #437
Update iohb.c to use snprintf
Bump required CMake version to 3.8
Primarily Windows-2019, but also MacOS 13.
Remove old platforms
…-cpp-attempt2c examples: C++11: Replace typedef with using declaration
…y in is_straight_line_drawing.hpp.
…line_drawing Robust, integer crosses for is_straight_line_drawing
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.
I'll try to summarize now so I can copy+paste into the release notes:
New features and user-visible improvements
adjacency_matrixnow fulfills theBidirectionalconcept.Bug fixes
isomorphism.Internal improvements
sprintfwithsnprintf.