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

El rng #86

Merged
merged 3 commits into from
Jan 15, 2024
Merged

El rng #86

merged 3 commits into from
Jan 15, 2024

Commits on Jan 14, 2024

  1. Replace _detail::ref_to_ptr<graph_type&> with graph_type* in member v…

    …ariable
    
    _detail::ref_to_ptr<graph_type&> isn't needed because there's no potential function being stored (as with value).
    Using it causes problems when passing it to CPOs because it's no longer a simple reference to the graph
    
    Applied to incidence, neighbors, edgelist view
    pratzl committed Jan 14, 2024
    Configuration menu
    Copy the full SHA
    fbde1ae View commit details
    Browse the repository at this point in the history
  2. Default vertex_id(g,ui) should return a size_t

    Use size_t for vertex_id type in examples_tests to avoid warnings
    pratzl committed Jan 14, 2024
    Configuration menu
    Copy the full SHA
    f29be07 View commit details
    Browse the repository at this point in the history
  3. Convert dfs views from tag_invoke to Niebloid CPOs

    Remove Stack as template parameter because it's no longer in P1709
    This allows removal of public dfs_element
    pratzl committed Jan 14, 2024
    Configuration menu
    Copy the full SHA
    4eaec64 View commit details
    Browse the repository at this point in the history