Merged
Conversation
…ompat and D3126 cross-paper note
Fix views.tex bindings: incidence [vid,uv], neighbors [vid,v], edgelist [uid,vid,uv], search example [uid,u]. Update plan: add naming convention section, fix Phase C/E/F/G binding examples, mark Phases A-C done.
…oncept Replace free functions (cancel, depth, size) with member functions (cancel(), depth(), num_visited()). Add search_view concept. Remove sourced views paragraph. Update code example to member syntax.
Update DFS and BFS tables: source→seed, vertex_info→vertex_data, edge_info→edge_data, remove sourced_edges rows, update bindings ([u], [u,val], [uv], [uv,val]). Remove all phil notes. Add design note explaining descriptor-based return (VId=void).
…e sourced Remove source parameter (all-vertex traversal). Remove sourced rows. Update bindings ([u], [u,val], [uv], [uv,val]) and types (vertex_data, edge_data). Add _safe factory table returning std::expected for cycle detection. Note cancel_branch == cancel_all. Remove phil notes.
… sort, TC, Jaccard, MIS, find_negative_cycle)
…llman-Ford, Prim, LP, components)
… graph example - 4A (algorithms.tex): replace size-based preconditions/throws with vertex-property-map-neutral wording in Dijkstra, Bellman-Ford, Connected Components, Afforest, Kosaraju, and Prim; add remarks referencing vertex_property_map_for and §Vertex Property Map Concept; fix Prim range_value_t -> vertex_property_map_value_t; fix Tarjan note concept name - 4C (connected_components.hpp): upgrade Kosaraju bidir overload from index_bidirectional_adjacency_list to bidirectional_adjacency_list - 4D: add dijkstra_example_mapped.hpp showing Dijkstra on a mapped graph (string vertex IDs via uov_graph_traits) and reference it from algorithms.tex
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.
Update views & algorithms to latest implementation