Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes from feedback #133

Merged
merged 5 commits into from
Sep 20, 2024
Merged

Changes from feedback #133

merged 5 commits into from
Sep 20, 2024

Commits on Sep 13, 2024

  1. Configuration menu
    Copy the full SHA
    889eab8 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Remove const from single vertex_id source param in shortest paths

    Include graph_using.hpp to avoid error
    pratzl committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    e7477c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d66a183 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Allocator parameter missing in bfs_base ctor

    One ctor accepted an allocator, the other didn't
    
    Replaced VKR template parameter with Seeds for clarity
    pratzl committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    b6e9707 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Use common struct definitions across compilers

    There are a few similar definitions that are defined internally in both gcc and mscvc
    that we need for the graph-v2 implementation. An issue was reported that they
    weren't defined when using MSVC, so I've renamed the defintions to be unique
    across the compilers to always use our own.
    pratzl committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    5d281b0 View commit details
    Browse the repository at this point in the history