Personalized page rank#502
Draft
maniospas wants to merge 9 commits into
Draft
Conversation
Merge a few years worth of changes
Merge September 2024 to early February 2025
New features and user-visible improvements Replace dependency on Boost.Geometry with simplified, robust integer crosses implementation. adjacency_matrix now fulfills the Bidirectional concept. Bug fixes Multiplicity value comparison in isomorphism. Various documentation fixes. Internal improvements Library modularization. Various modernizations to library and examples. Simplified implementation of Lengauer-Tarjan dominator tree. Replace deprecated functions like sprintf with snprintf. Removed dependency on Boost.StaticAssert
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.
Before submitting
developbranch.Type of change
Does this PR introduce a breaking change?
What this PR does
Provides an implementation of personalized PageRank following the motivating issue's outline for the provided interface.
Motivation
Refs #493
Testing
personalized_pagerank_test.cppwas added to tests. This runs two node scoring scenarios on a graph with well-understood structure, where assertions are added for equality between isomorphic nodes and certain interesting numerical comparisons checked to hold. The build command for local testing wasg++ -std=c++14 -I./boost -o test test.cpp -O2.Checklist
b2in thetest/directory).Documentation change not applicable, but likely new documentation should be added to reflect the introduced algorithm.