HomeSort by relevance Sort by last modified time
    Searched refs:EdgeWeight (Results 1 - 10 of 10) sorted by null

  /external/ceres-solver/internal/ceres/
graph_test.cc 57 EXPECT_EQ(graph.EdgeWeight(0, 1), 0.5);
58 EXPECT_EQ(graph.EdgeWeight(1, 0), 0.5);
82 EXPECT_EQ(graph.EdgeWeight(0, 1), 0.5);
83 EXPECT_EQ(graph.EdgeWeight(1, 0), 0.5);
103 EXPECT_EQ(graph.EdgeWeight(2, 3), 0);
canonical_views_clustering.cc 172 const double new_similarity = graph_->EdgeWeight(*neighbor, candidate);
184 graph_->EdgeWeight(centers[i], candidate);
200 graph_->EdgeWeight(*neighbor, canonical_view);
visibility_test.cc 119 EXPECT_EQ(graph->EdgeWeight(i, j), edge_weight)
121 << " weight: " << graph->EdgeWeight(i, j)
194 EXPECT_EQ(graph->EdgeWeight(i, j), edge_weight)
196 << " weight: " << graph->EdgeWeight(i, j)
graph.h 122 // Calling EdgeWeight on a pair of vertices where either one of the
126 double EdgeWeight(const Vertex& vertex1, const Vertex& vertex2) const {
graph_algorithms.h 211 const double weight = graph.EdgeWeight(vertex1, vertex2);
249 const double edge_weight = graph.EdgeWeight(vertex1, vertex2);
graph_algorithms_test.cc 118 EXPECT_EQ(forest->EdgeWeight(0, 1), 0.5);
  /external/llvm/lib/Transforms/Instrumentation/
MaximumSpanningTree.h 31 typedef std::pair<Edge, double> EdgeWeight;
32 typedef std::vector<EdgeWeight> EdgeWeights;
46 bool operator()(EdgeWeight X, EdgeWeight Y) const {
OptimalEdgeProfiling.cpp 141 std::vector<ProfileInfo::EdgeWeight> EdgeVector(ECs.begin(), ECs.end());
  /external/llvm/lib/Analysis/
ProfileVerifierPass.cpp 106 double EdgeWeight = PI->getEdgeWeight(E);
107 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; }
109 << format("%20.20g",EdgeWeight) << "\n";
110 inWeight += EdgeWeight;
121 double EdgeWeight = PI->getEdgeWeight(E);
122 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; }
124 << format("%20.20g",EdgeWeight) << "\n";
125 outWeight += EdgeWeight;
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 59 typedef std::pair<Edge, double> EdgeWeight;

Completed in 104 milliseconds