Docs.rs
sim-lib-discrete-graph-0.2.0
sim-lib-discrete-graph 0.2.0
Docs.rs crate page
MPL-2.0
03 August 2026
Links
Homepage
Repository
crates.io
Source
Owners
boherlin
Dependencies
sim-cookbook ^0.2.0
normal
sim-lib-discrete-algebra ^0.2.0
normal
thiserror ^1
normal
sim-cookbook ^0.2.0
build
Versions
99.66%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module traversal
sim_
lib_
discrete_
graph
0.2.0
Module traversal
Module Items
Structs
Functions
In crate sim_
lib_
discrete_
graph
sim_lib_discrete_graph
Module
traversal
Copy item path
Source
Expand description
Deterministic breadth-first and depth-first traversal.
Structs
§
Traversal
The result of a traversal from a single start node.
Functions
§
bfs
Breadth-first traversal from
start
. Neighbors are visited in ascending node order, so the result is deterministic.
dfs
Depth-first traversal from
start
. Neighbors are explored in ascending node order, so the result is deterministic.