Home
last modified time | relevance | path

Searched refs:NodeCompactIndexable (Results 1 – 13 of 13) sorted by relevance

/external/rust/android-crates-io/crates/petgraph/src/algo/
Disomorphism.rs11 use crate::visit::NodeCompactIndexable;
47 G: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected,
289 G0: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in is_feasible()
290 G1: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in is_feasible()
467 G0: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in next_candidate()
468 G1: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in next_candidate()
513 G0: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in next_from_ix()
514 G1: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in next_from_ix()
537 G0: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in pop_state()
538 G1: GetAdjacencyMatrix + GraphProp + NodeCompactIndexable + IntoNeighborsDirected, in pop_state()
[all …]
Dfloyd_warshall.rs7 EdgeRef, GraphProp, IntoEdgeReferences, IntoNodeIdentifiers, NodeCompactIndexable,
86 G: NodeCompactIndexable + IntoEdgeReferences + IntoNodeIdentifiers + GraphProp, in floyd_warshall()
Dtred.rs14 GraphBase, IntoNeighbors, IntoNeighborsDirected, NodeCompactIndexable, NodeCount,
66 G: GraphBase + IntoNeighborsDirected + NodeCompactIndexable + NodeCount, in dag_to_toposorted_adjacency_list()
Dmod.rs30 IntoNodeIdentifiers, NodeCompactIndexable, NodeIndexable, Reversed, VisitMap, Visitable,
91 G: NodeCompactIndexable + IntoEdgeReferences, in connected_components()
/external/rust/android-crates-io/crates/petgraph/src/visit/
Dreversed.rs6 IntoNodeIdentifiers, IntoNodeReferences, NodeCompactIndexable, NodeCount, NodeIndexable,
177 NodeCompactIndexable! {delegate_impl [[G], G, Reversed<G>, access0]}
Dmod.rs387 pub trait NodeCompactIndexable : NodeIndexable + NodeCount { } trait
390 NodeCompactIndexable! {delegate_impl []}
Dfilter.rs8 use crate::visit::{Data, NodeCompactIndexable, NodeCount};
579 NodeCompactIndexable! {delegate_impl [[G, F], G, EdgeFiltered<G, F>, access0]}
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/
Dfrozen.rs9 IntoEdgesDirected, IntoNeighborsDirected, IntoNodeIdentifiers, NodeCompactIndexable, NodeCount,
102 NodeCompactIndexable! {delegate_impl [['a, G], G, Frozen<'a, G>, deref_twice]}
Dmod.rs2201 impl<N, E, Ty, Ix> visit::NodeCompactIndexable for Graph<N, E, Ty, Ix>
/external/rust/android-crates-io/crates/petgraph/src/
Dcsr.rs11 IntoEdges, IntoNeighbors, IntoNodeIdentifiers, IntoNodeReferences, NodeCompactIndexable,
648 impl<N, E, Ty, Ix> NodeCompactIndexable for Csr<N, E, Ty, Ix>
Dadj.rs592 impl<E, Ix: IndexType> visit::NodeCompactIndexable for List<E, Ix> {}
Dgraphmap.rs1216 impl<N, E, Ty, S> visit::NodeCompactIndexable for GraphMap<N, E, Ty, S>
/external/rust/android-crates-io/crates/petgraph/
DRELEASES.rst80 - Removed the ``NodeCompactIndexable`` trait impl for ``MatrixGraph`` (`#429`_).
275 - Add indexing with ``[]`` by node index, ``NodeCompactIndexable`` for