Home
last modified time | relevance | path

Searched refs:GetAdjacencyMatrix (Results 1 – 10 of 10) sorted by relevance

/external/rust/android-crates-io/crates/petgraph/src/algo/
Disomorphism.rs6 use crate::visit::GetAdjacencyMatrix;
24 pub struct Vf2State<'a, G: GetAdjacencyMatrix> {
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()
[all …]
/external/rust/android-crates-io/crates/petgraph/src/
Dtraits_graph.rs12 use super::visit::GetAdjacencyMatrix;
16 impl<N, E, Ty, Ix> GetAdjacencyMatrix for Graph<N, E, Ty, Ix>
47 impl<N, E, Ty, Ix> GetAdjacencyMatrix for StableGraph<N, E, Ty, Ix>
Dadj.rs5 self, EdgeCount, EdgeRef, GetAdjacencyMatrix, IntoEdgeReferences, IntoNeighbors, NodeCount,
632 impl<E, Ix> GetAdjacencyMatrix for List<E, Ix>
Dcsr.rs10 Data, EdgeCount, EdgeRef, GetAdjacencyMatrix, GraphBase, GraphProp, IntoEdgeReferences,
793 impl<'a, N, E, Ty, Ix> GetAdjacencyMatrix for &'a Csr<N, E, Ty, Ix> impl
Dmatrix_graph.rs18 Data, EdgeCount, GetAdjacencyMatrix, GraphBase, GraphProp, IntoEdgeReferences, IntoEdges,
1113 impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> GetAdjacencyMatrix
Dgraphmap.rs1323 impl<N, E, Ty, S> visit::GetAdjacencyMatrix for GraphMap<N, E, Ty, S>
/external/rust/android-crates-io/crates/petgraph/src/visit/
Dreversed.rs4 Data, EdgeCount, EdgeIndexable, EdgeRef, GetAdjacencyMatrix, GraphBase, GraphProp, GraphRef,
184 GetAdjacencyMatrix! {delegate_impl [[G], G, Reversed<G>, access0]}
Dmod.rs450 pub trait GetAdjacencyMatrix : GraphBase { trait
464 GetAdjacencyMatrix! {delegate_impl []}
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/
Dfrozen.rs8 Data, EdgeCount, EdgeIndexable, GetAdjacencyMatrix, GraphBase, GraphProp, IntoEdges,
94 GetAdjacencyMatrix! {delegate_impl [['a, G], G, Frozen<'a, G>, deref_twice]}
/external/rust/android-crates-io/crates/petgraph/tests/
Dgraph.rs626 use petgraph::visit::GetAdjacencyMatrix; in test_generate_dag()