blob: 8f054756c74ba52e0991265a7524db6fe9f4729a [file] [log] [blame]
Austin Schuh70cc9552019-01-21 19:46:48 -08001// Ceres Solver - A fast non-linear least squares minimizer
2// Copyright 2015 Google Inc. All rights reserved.
3// http://ceres-solver.org/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: sameeragarwal@google.com (Sameer Agarwal)
30
31#include "ceres/graph.h"
32
33#include <unordered_set>
34#include "gtest/gtest.h"
35
36namespace ceres {
37namespace internal {
38
39TEST(Graph, EmptyGraph) {
40 Graph<int> graph;
41 EXPECT_EQ(graph.vertices().size(), 0);
42}
43
44TEST(Graph, AddVertexAndEdge) {
45 Graph<int> graph;
46 graph.AddVertex(0);
47 graph.AddVertex(1);
48 graph.AddEdge(0, 1);
49
50 const std::unordered_set<int>& vertices = graph.vertices();
51 EXPECT_EQ(vertices.size(), 2);
52 EXPECT_EQ(graph.Neighbors(0).size(), 1);
53 EXPECT_EQ(graph.Neighbors(1).size(), 1);
54}
55
56TEST(Graph, AddVertexIdempotence) {
57 Graph<int> graph;
58 graph.AddVertex(0);
59 graph.AddVertex(1);
60 graph.AddEdge(0, 1);
61
62 const std::unordered_set<int>& vertices = graph.vertices();
63
64 EXPECT_EQ(vertices.size(), 2);
65
66 // Try adding the vertex again with a new weight.
67 graph.AddVertex(0);
68 EXPECT_EQ(vertices.size(), 2);
69
70 // Rest of the graph remains the same.
71 EXPECT_EQ(graph.Neighbors(0).size(), 1);
72 EXPECT_EQ(graph.Neighbors(1).size(), 1);
73}
74
75TEST(Graph, DieOnNonExistentVertex) {
76 Graph<int> graph;
77 graph.AddVertex(0);
78 graph.AddVertex(1);
79 graph.AddEdge(0, 1);
80
81 EXPECT_DEATH_IF_SUPPORTED(graph.Neighbors(2), "key not found");
82}
83
84TEST(WeightedGraph, EmptyGraph) {
85 WeightedGraph<int> graph;
86 EXPECT_EQ(graph.vertices().size(), 0);
87}
88
89TEST(WeightedGraph, AddVertexAndEdge) {
90 WeightedGraph<int> graph;
91 graph.AddVertex(0, 1.0);
92 graph.AddVertex(1, 2.0);
93 graph.AddEdge(0, 1, 0.5);
94
95 const std::unordered_set<int>& vertices = graph.vertices();
96 EXPECT_EQ(vertices.size(), 2);
97 EXPECT_EQ(graph.VertexWeight(0), 1.0);
98 EXPECT_EQ(graph.VertexWeight(1), 2.0);
99 EXPECT_EQ(graph.Neighbors(0).size(), 1);
100 EXPECT_EQ(graph.Neighbors(1).size(), 1);
101 EXPECT_EQ(graph.EdgeWeight(0, 1), 0.5);
102 EXPECT_EQ(graph.EdgeWeight(1, 0), 0.5);
103}
104
105TEST(WeightedGraph, AddVertexIdempotence) {
106 WeightedGraph<int> graph;
107 graph.AddVertex(0, 1.0);
108 graph.AddVertex(1, 2.0);
109 graph.AddEdge(0, 1, 0.5);
110
111 const std::unordered_set<int>& vertices = graph.vertices();
112
113 EXPECT_EQ(vertices.size(), 2);
114
115 // Try adding the vertex again with a new weight.
116 graph.AddVertex(0, 3.0);
117 EXPECT_EQ(vertices.size(), 2);
118
119 // The vertex weight is reset.
120 EXPECT_EQ(graph.VertexWeight(0), 3.0);
121
122 // Rest of the graph remains the same.
123 EXPECT_EQ(graph.VertexWeight(1), 2.0);
124 EXPECT_EQ(graph.Neighbors(0).size(), 1);
125 EXPECT_EQ(graph.Neighbors(1).size(), 1);
126 EXPECT_EQ(graph.EdgeWeight(0, 1), 0.5);
127 EXPECT_EQ(graph.EdgeWeight(1, 0), 0.5);
128}
129
130TEST(WeightedGraph, DieOnNonExistentVertex) {
131 WeightedGraph<int> graph;
132 graph.AddVertex(0, 1.0);
133 graph.AddVertex(1, 2.0);
134 graph.AddEdge(0, 1, 0.5);
135
136 EXPECT_DEATH_IF_SUPPORTED(graph.VertexWeight(2), "key not found");
137 EXPECT_DEATH_IF_SUPPORTED(graph.Neighbors(2), "key not found");
138}
139
140TEST(WeightedGraph, NonExistentEdge) {
141 WeightedGraph<int> graph;
142 graph.AddVertex(0, 1.0);
143 graph.AddVertex(1, 2.0);
144 graph.AddEdge(0, 1, 0.5);
145
146 // Default value for non-existent edges is 0.
147 EXPECT_EQ(graph.EdgeWeight(2, 3), 0);
148}
149
150} // namespace internal
151} // namespace ceres