OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VertexWeight
(Results
1 - 6
of
6
) sorted by null
/external/ceres-solver/internal/ceres/
graph_test.cc
53
EXPECT_EQ(graph.
VertexWeight
(0), 1.0);
54
EXPECT_EQ(graph.
VertexWeight
(1), 2.0);
76
EXPECT_EQ(graph.
VertexWeight
(0), 3.0);
79
EXPECT_EQ(graph.
VertexWeight
(1), 2.0);
92
EXPECT_DEATH_IF_SUPPORTED(graph.
VertexWeight
(2), "key not found");
canonical_views_clustering.cc
153
if (graph_->
VertexWeight
(*view) != Graph<int>::InvalidWeight()) {
166
options_.view_score_weight * graph_->
VertexWeight
(candidate);
graph.h
117
// Calling
VertexWeight
on a vertex not in the graph will result in
119
double
VertexWeight
(const Vertex& vertex) const {
graph_algorithms_test.cc
115
EXPECT_EQ(forest->
VertexWeight
(0), 1.0);
116
EXPECT_EQ(forest->
VertexWeight
(1), 2.0);
visibility_test.cc
114
EXPECT_EQ(graph->
VertexWeight
(i), 1.0);
190
EXPECT_EQ(graph->
VertexWeight
(i), 1.0);
graph_algorithms.h
292
forest->AddVertex(vertex1, graph.
VertexWeight
(vertex1));
Completed in 1455 milliseconds