Skip to content

Commit 26bcb69

Browse files
authored
Merge pull request #123 from constantinpape/purge-agraph
Remove andres::graph submodule
2 parents d3397c7 + 5b99706 commit 26bcb69

21 files changed

+1694
-1006
lines changed

.gitmodules

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[submodule "externals/graph"]
2-
path = externals/graph
3-
url = https://github.com/bjoern-andres/graph
4-
51
[submodule "externals/LP_MP"]
62
path = externals/LP_MP
73
url = https://github.com/pawelswoboda/LP_MP.git

CMakeLists.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,9 @@ include_directories(${xtensor_INCLUDE_DIRS})
140140
#-------------------------------------------------------------------------------------------------------------------
141141
# externals
142142
#-------------------------------------------------------------------------------------------------------------------
143-
include_directories( "${CMAKE_CURRENT_SOURCE_DIR}/externals/maxflow")
144-
include_directories( "${CMAKE_CURRENT_SOURCE_DIR}/externals/graph/include")
143+
# FIXME external maxflow project doews not exist anymore
144+
# was this removed accidentally?
145+
# include_directories( "${CMAKE_CURRENT_SOURCE_DIR}/externals/maxflow")
145146

146147

147148

externals/graph

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
// This header was copied from https://github.com/bjoern-andres/graph.
2+
// It comes with the following license:
3+
/*
4+
Copyright (c) by Bjoern Andres (bjoern@andres.sc).
5+
6+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
7+
8+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
9+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
10+
The name of the author must not be used to endorse or promote products derived from this software without specific prior written permission.
11+
12+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13+
*/
14+
15+
#pragma once
16+
#ifndef ANDRES_GRAPH_ADJACENCY_HXX
17+
#define ANDRES_GRAPH_ADJACENCY_HXX
18+
19+
namespace andres {
20+
namespace graph {
21+
22+
/// The adjacency of a vertex consists of a vertex and a connecting edge.
23+
template<class T = std::size_t>
24+
class Adjacency {
25+
public:
26+
typedef T Value;
27+
28+
Adjacency(const Value = T(), const Value = T());
29+
Value vertex() const;
30+
Value& vertex();
31+
Value edge() const;
32+
Value& edge();
33+
bool operator<(const Adjacency<Value>&) const;
34+
bool operator<=(const Adjacency<Value>&) const;
35+
bool operator>(const Adjacency<Value>&) const;
36+
bool operator>=(const Adjacency<Value>&) const;
37+
bool operator==(const Adjacency<Value>&) const;
38+
bool operator!=(const Adjacency<Value>&) const;
39+
40+
private:
41+
Value vertex_;
42+
Value edge_;
43+
};
44+
45+
/// Construct an adjacency.
46+
///
47+
/// \param vertex Vertex.
48+
/// \param edge Edge.
49+
///
50+
template<class T>
51+
inline
52+
Adjacency<T>::Adjacency(
53+
const Value vertex,
54+
const Value edge
55+
)
56+
: vertex_(vertex),
57+
edge_(edge)
58+
{}
59+
60+
/// Access the vertex.
61+
///
62+
template<class T>
63+
inline typename Adjacency<T>::Value
64+
Adjacency<T>::vertex() const {
65+
return vertex_;
66+
}
67+
68+
/// Access the vertex.
69+
///
70+
template<class T>
71+
inline typename Adjacency<T>::Value&
72+
Adjacency<T>::vertex() {
73+
return vertex_;
74+
}
75+
76+
/// Access the edge.
77+
///
78+
template<class T>
79+
inline typename Adjacency<T>::Value
80+
Adjacency<T>::edge() const {
81+
return edge_;
82+
}
83+
84+
/// Access the edge.
85+
///
86+
template<class T>
87+
inline typename Adjacency<T>::Value&
88+
Adjacency<T>::edge() {
89+
return edge_;
90+
}
91+
92+
/// Adjacencies are ordered first wrt the vertex, then wrt the edge.
93+
///
94+
template<class T>
95+
inline bool
96+
Adjacency<T>::operator<(
97+
const Adjacency<T>& in
98+
) const {
99+
if(vertex_ < in.vertex_) {
100+
return true;
101+
}
102+
else if(vertex_ == in.vertex_) {
103+
return edge_ < in.edge_;
104+
}
105+
else {
106+
return false;
107+
}
108+
}
109+
110+
/// Adjacencies are ordered first wrt the vertex, then wrt the edge.
111+
///
112+
template<class T>
113+
inline bool
114+
Adjacency<T>::operator<=(
115+
const Adjacency<T>& in
116+
) const {
117+
if(vertex_ < in.vertex_) {
118+
return true;
119+
}
120+
else if(vertex_ == in.vertex_) {
121+
return edge_ <= in.edge_;
122+
}
123+
else {
124+
return false;
125+
}
126+
}
127+
128+
/// Adjacencies are ordered first wrt the vertex, then wrt the edge.
129+
///
130+
template<class T>
131+
inline bool
132+
Adjacency<T>::operator>(
133+
const Adjacency<T>& in
134+
) const {
135+
if(vertex_ > in.vertex_) {
136+
return true;
137+
}
138+
else if(vertex_ == in.vertex_) {
139+
return edge_ > in.edge_;
140+
}
141+
else {
142+
return false;
143+
}
144+
}
145+
146+
/// Adjacencies are ordered first wrt the vertex, then wrt the edge.
147+
///
148+
template<class T>
149+
inline bool
150+
Adjacency<T>::operator>=(
151+
const Adjacency<T>& in
152+
) const {
153+
if(vertex_ > in.vertex_) {
154+
return true;
155+
}
156+
else if(vertex_ == in.vertex_) {
157+
return edge_ >= in.edge_;
158+
}
159+
else {
160+
return false;
161+
}
162+
}
163+
164+
/// Adjacencies are equal if both the vertex and the edge are equal.
165+
///
166+
template<class T>
167+
inline bool
168+
Adjacency<T>::operator==(
169+
const Adjacency<T>& in
170+
) const {
171+
return vertex_ == in.vertex_ && edge_ == in.edge_;
172+
}
173+
174+
/// Adjacencies are unequal if either the vertex or the edge are unqual.
175+
///
176+
template<class T>
177+
inline bool
178+
Adjacency<T>::operator!=(
179+
const Adjacency<T>& in
180+
) const {
181+
return !(*this == in);
182+
}
183+
184+
} // namespace graph
185+
} // namespace andres
186+
187+
#endif // #ifndef ANDRES_GRAPH_ADJACENCY_HXX

0 commit comments

Comments
 (0)