Home
last modified time | relevance | path

Searched defs:EdgeWeight (Results 1 – 17 of 17) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/
Ddata.rs54 weight: Self::EdgeWeight, in add_edge()
64 weight: Self::EdgeWeight, in update_edge()
78 type EdgeWeight = E; typedef
89 fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight> { in edge_weight()
102 fn edge_weight_mut(&mut self, id: Self::EdgeId) -> Option<&mut Self::EdgeWeight> { in edge_weight_mut()
116 fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight> { in edge_weight()
130 fn edge_weight_mut(&mut self, id: Self::EdgeId) -> Option<&mut Self::EdgeWeight> { in edge_weight_mut()
147 weight: Self::EdgeWeight, in add_edge()
155 weight: Self::EdgeWeight, in update_edge()
174 weight: Self::EdgeWeight, in add_edge()
[all …]
Dmatrix_graph.rs1157 type EdgeWeight = E; typedef
1256 weight: Self::EdgeWeight, in add_edge()
1270 weight: Self::EdgeWeight, in update_edge()
Ddot.rs154 EF: Fn(&G::EdgeWeight, &mut fmt::Formatter) -> fmt::Result, in graph_fmt()
Dadj.rs462 type EdgeWeight = E; typedef
Dcsr.rs487 type EdgeWeight = E; typedef
Dgraphmap.rs1121 type EdgeWeight = E; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/algo/
Dford_fulkerson.rs18 flow: N::EdgeWeight, in residual_capacity()
57 flows: &[N::EdgeWeight], in has_augmented_path()
92 flow: N::EdgeWeight, in adjust_residual_flow()
93 delta: N::EdgeWeight, in adjust_residual_flow()
150 ) -> (N::EdgeWeight, Vec<N::EdgeWeight>) in ford_fulkerson()
Dbellman_ford.rs84 ) -> Result<Paths<G::NodeId, G::EdgeWeight>, NegativeCycle> in bellman_ford()
214 ) -> (Vec<G::EdgeWeight>, Vec<Option<G::NodeId>>) in bellman_ford_initialize_relax()
Disomorphism.rs860 EM: FnMut(&G0::EdgeWeight, &G1::EdgeWeight) -> bool, in is_isomorphic_matching()
947 EM: FnMut(&G0::EdgeWeight, &G1::EdgeWeight) -> bool, in is_isomorphic_subgraph_matching()
985 EM: 'a + FnMut(&G0::EdgeWeight, &G1::EdgeWeight) -> bool, in subgraph_isomorphisms_iter()
/aosp_15_r20/external/llvm/include/llvm/Support/
H A DGCOV.h298 struct EdgeWeight { struct
299 EdgeWeight(GCOVBlock *D) : Dst(D), Count(0) {} in EdgeWeight() function
301 GCOVBlock *Dst;
302 uint64_t Count;
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DGCOV.h314 struct EdgeWeight { struct
315 EdgeWeight(GCOVBlock *D) : Dst(D) {} in EdgeWeight() function
317 GCOVBlock *Dst;
318 uint64_t Count = 0;
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h30 typedef std::pair<Edge, double> EdgeWeight; typedef
/aosp_15_r20/external/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h31 typedef std::pair<Edge, double> EdgeWeight; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/benches/common/
Dfactories.rs183 G: Default + Build<NodeWeight = (), EdgeWeight = ()> + NodeIndexable, in parse_graph() argument
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
H A DMIRSampleProfile.cpp212 uint64_t EdgeWeight = EdgeWeights[E]; in setBranchProbs() local
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/visit/
Dfilter.rs338 fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight> { in edge_weight()
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/graph_impl/stable_graph/
Dmod.rs1807 type EdgeWeight = E; typedef