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

Convexity algorithm #97

Merged
merged 18 commits into from
Jul 31, 2023
Prev Previous commit
Next Next commit
Fix docs (2)
  • Loading branch information
lmondada committed Jul 28, 2023
commit f8a53db4e3c621bec060b5bed3d662fafdb450b9
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
//! graph.link_ports(port_a, port_b).unwrap();
//!
//! // Run a topological sort on the graph starting at node A.
//! let topo: TopoSort = toposort(&graph, [node_a], Direction::Outgoing);
//! let topo: TopoSort<_> = toposort(&graph, [node_a], Direction::Outgoing);
//! assert_eq!(topo.collect::<Vec<_>>(), [node_a, node_b]);
//! ```
//!
Expand Down