feat(Combinatorics/GraphLike/Walks): add general walks for GraphLike structures#36756
feat(Combinatorics/GraphLike/Walks): add general walks for GraphLike structures#36756Jun2M wants to merge 92 commits into
GraphLike structures#36756Conversation
PR summary cc26c21489Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
Co-authored-by: Iván Renison <85908989+IvanRenison@users.noreply.github.com>
Co-authored-by: Iván Renison <85908989+IvanRenison@users.noreply.github.com>
|
This pull request is now in draft mode. No active bors state needed cleanup. While this PR remains draft, bors will ignore commands on this PR. Mark it ready for review before using commands like |
Per discussion at (#graph theory > HasAdj), This PR introduces the basic theory of walks as a general framework that works across different graph-like structures including
SimpleGraph,Digraph, andGraph.Main definitions
Walk G u v: The type of walks from vertexuto vertexvin a graph-like structureGWalk.length: The number of edges in a walkWalk.support: The list of vertices visited by a walkWalk.darts: The list ofdarts(oriented edges) in a walkGraphLiketypeclass #36743