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

  /external/ceres-solver/internal/ceres/
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 {
  /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 {
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 59 typedef std::pair<Edge, double> EdgeWeight;
  /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...]

Completed in 55 milliseconds