0
3
0
1 | 1 |
CMAKE_MINIMUM_REQUIRED(VERSION 2.6) |
2 | 2 |
|
3 | 3 |
SET(PROJECT_NAME "LEMON") |
4 | 4 |
SET(PROJECT_VERSION "hg-tip" CACHE STRING "The version string.") |
5 | 5 |
|
6 | 6 |
PROJECT(${PROJECT_NAME}) |
7 | 7 |
|
8 | 8 |
SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) |
9 | 9 |
|
10 |
IF(MSVC) |
|
11 |
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4250 /wd4355 /wd4800 /wd4996") |
|
12 |
# Suppressed warnings: |
|
13 |
# C4250: 'class1' : inherits 'class2::member' via dominance |
|
14 |
# C4355: 'this' : used in base member initializer list |
|
15 |
# C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning) |
|
16 |
# C4996: 'function': was declared deprecated |
|
17 |
ENDIF(MSVC) |
|
18 |
|
|
10 | 19 |
INCLUDE(FindDoxygen) |
11 | 20 |
INCLUDE(FindGhostscript) |
12 | 21 |
|
13 | 22 |
ENABLE_TESTING() |
14 | 23 |
|
15 | 24 |
ADD_SUBDIRECTORY(lemon) |
16 | 25 |
ADD_SUBDIRECTORY(demo) |
17 | 26 |
ADD_SUBDIRECTORY(doc) |
18 | 27 |
ADD_SUBDIRECTORY(test) |
19 | 28 |
|
20 | 29 |
IF(WIN32) |
21 | 30 |
INSTALL(FILES ${CMAKE_SOURCE_DIR}/cmake/nsis/lemon.ico |
22 | 31 |
DESTINATION bin) |
23 | 32 |
ENDIF(WIN32) |
24 | 33 |
|
25 | 34 |
IF(WIN32) |
26 | 35 |
SET(CPACK_PACKAGE_NAME ${PROJECT_NAME}) |
27 | 36 |
SET(CPACK_PACKAGE_VENDOR |
28 | 37 |
"EGRES - Egervary Research Group on Combinatorial Optimization") |
29 | 38 |
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY |
30 | 39 |
"LEMON - Library of Efficient Models and Optimization in Networks") |
31 | 40 |
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE") |
32 | 41 |
|
33 | 42 |
SET(CPACK_PACKAGE_VERSION ${PROJECT_VERSION}) |
34 | 43 |
|
35 | 44 |
SET(CPACK_PACKAGE_INSTALL_DIRECTORY |
36 | 45 |
"${PROJECT_NAME} ${PROJECT_VERSION}") |
37 | 46 |
SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY |
38 | 47 |
"${PROJECT_NAME} ${PROJECT_VERSION}") |
39 | 48 |
|
40 | 49 |
# Variables to generate a component-based installer. |
41 | 50 |
#SET(CPACK_COMPONENTS_ALL headers library html_documentation) |
42 | 51 |
|
43 | 52 |
#SET(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "C++ headers") |
44 | 53 |
#SET(CPACK_COMPONENT_LIBRARY_DISPLAY_NAME "Static library") |
45 | 54 |
#SET(CPACK_COMPONENT_HTML_DOCUMENTATION_DISPLAY_NAME "HTML documentation") |
46 | 55 |
|
47 | 56 |
#SET(CPACK_COMPONENT_HEADERS_DESCRIPTION |
48 | 57 |
# "C++ header files for use with the LEMON library") |
49 | 58 |
#SET(CPACK_COMPONENT_LIBRARY_DESCRIPTION |
50 | 59 |
# "Static library used to build programs with LEMON") |
51 | 60 |
#SET(CPACK_COMPONENT_HTML_DOCUMENTATION_DESCRIPTION |
52 | 61 |
# "Doxygen generated documentation") |
53 | 62 |
|
54 | 63 |
#SET(CPACK_COMPONENT_HEADERS_DEPENDS library) |
55 | 64 |
|
56 | 65 |
#SET(CPACK_COMPONENT_HEADERS_GROUP "Development") |
57 | 66 |
#SET(CPACK_COMPONENT_LIBRARY_GROUP "Development") |
58 | 67 |
#SET(CPACK_COMPONENT_HTML_DOCUMENTATION_GROUP "Documentation") |
59 | 68 |
|
60 | 69 |
#SET(CPACK_COMPONENT_GROUP_DEVELOPMENT_DESCRIPTION |
61 | 70 |
# "Components needed to develop software using LEMON") |
62 | 71 |
#SET(CPACK_COMPONENT_GROUP_DOCUMENTATION_DESCRIPTION |
63 | 72 |
# "Documentation of LEMON") |
64 | 73 |
|
65 | 74 |
#SET(CPACK_ALL_INSTALL_TYPES Full Developer) |
66 | 75 |
|
67 | 76 |
#SET(CPACK_COMPONENT_HEADERS_INSTALL_TYPES Developer Full) |
68 | 77 |
#SET(CPACK_COMPONENT_LIBRARY_INSTALL_TYPES Developer Full) |
69 | 78 |
#SET(CPACK_COMPONENT_HTML_DOCUMENTATION_INSTALL_TYPES Full) |
70 | 79 |
|
71 | 80 |
SET(CPACK_GENERATOR "NSIS") |
72 | 81 |
SET(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/cmake/nsis/lemon.ico") |
73 | 82 |
SET(CPACK_NSIS_MUI_UNIICON "${CMAKE_SOURCE_DIR}/cmake/nsis/uninstall.ico") |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2008 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
///\file |
20 | 20 |
///\brief Some basic non-inline functions and static global data. |
21 | 21 |
|
22 | 22 |
#include<lemon/tolerance.h> |
23 | 23 |
#include<lemon/core.h> |
24 | 24 |
namespace lemon { |
25 | 25 |
|
26 |
float Tolerance<float>::def_epsilon = 1e-4; |
|
26 |
float Tolerance<float>::def_epsilon = static_cast<float>(1e-4); |
|
27 | 27 |
double Tolerance<double>::def_epsilon = 1e-10; |
28 | 28 |
long double Tolerance<long double>::def_epsilon = 1e-14; |
29 | 29 |
|
30 | 30 |
#ifndef LEMON_ONLY_TEMPLATES |
31 | 31 |
const Invalid INVALID = Invalid(); |
32 | 32 |
#endif |
33 | 33 |
|
34 | 34 |
} //namespace lemon |
... | ... |
@@ -109,158 +109,158 @@ |
109 | 109 |
|
110 | 110 |
// IdentityMap |
111 | 111 |
{ |
112 | 112 |
checkConcept<ReadMap<A,A>, IdentityMap<A> >(); |
113 | 113 |
IdentityMap<A> map1; |
114 | 114 |
IdentityMap<A> map2 = map1; |
115 | 115 |
map1 = identityMap<A>(); |
116 | 116 |
|
117 | 117 |
checkConcept<ReadMap<double,double>, IdentityMap<double> >(); |
118 | 118 |
check(identityMap<double>()[1.0] == 1.0 && |
119 | 119 |
identityMap<double>()[3.14] == 3.14, |
120 | 120 |
"Something is wrong with IdentityMap"); |
121 | 121 |
} |
122 | 122 |
|
123 | 123 |
// RangeMap |
124 | 124 |
{ |
125 | 125 |
checkConcept<ReferenceMap<int,B,B&,const B&>, RangeMap<B> >(); |
126 | 126 |
RangeMap<B> map1; |
127 | 127 |
RangeMap<B> map2(10); |
128 | 128 |
RangeMap<B> map3(10,B()); |
129 | 129 |
RangeMap<B> map4 = map1; |
130 | 130 |
RangeMap<B> map5 = rangeMap<B>(); |
131 | 131 |
RangeMap<B> map6 = rangeMap<B>(10); |
132 | 132 |
RangeMap<B> map7 = rangeMap(10,B()); |
133 | 133 |
|
134 | 134 |
checkConcept< ReferenceMap<int, double, double&, const double&>, |
135 | 135 |
RangeMap<double> >(); |
136 | 136 |
std::vector<double> v(10, 0); |
137 | 137 |
v[5] = 100; |
138 | 138 |
RangeMap<double> map8(v); |
139 | 139 |
RangeMap<double> map9 = rangeMap(v); |
140 | 140 |
check(map9.size() == 10 && map9[2] == 0 && map9[5] == 100, |
141 | 141 |
"Something is wrong with RangeMap"); |
142 | 142 |
} |
143 | 143 |
|
144 | 144 |
// SparseMap |
145 | 145 |
{ |
146 | 146 |
checkConcept<ReferenceMap<A,B,B&,const B&>, SparseMap<A,B> >(); |
147 | 147 |
SparseMap<A,B> map1; |
148 | 148 |
SparseMap<A,B> map2 = B(); |
149 | 149 |
SparseMap<A,B> map3 = sparseMap<A,B>(); |
150 | 150 |
SparseMap<A,B> map4 = sparseMap<A>(B()); |
151 | 151 |
|
152 | 152 |
checkConcept< ReferenceMap<double, int, int&, const int&>, |
153 | 153 |
SparseMap<double, int> >(); |
154 | 154 |
std::map<double, int> m; |
155 | 155 |
SparseMap<double, int> map5(m); |
156 | 156 |
SparseMap<double, int> map6(m,10); |
157 | 157 |
SparseMap<double, int> map7 = sparseMap(m); |
158 | 158 |
SparseMap<double, int> map8 = sparseMap(m,10); |
159 | 159 |
|
160 | 160 |
check(map5[1.0] == 0 && map5[3.14] == 0 && |
161 | 161 |
map6[1.0] == 10 && map6[3.14] == 10, |
162 | 162 |
"Something is wrong with SparseMap"); |
163 | 163 |
map5[1.0] = map6[3.14] = 100; |
164 | 164 |
check(map5[1.0] == 100 && map5[3.14] == 0 && |
165 | 165 |
map6[1.0] == 10 && map6[3.14] == 100, |
166 | 166 |
"Something is wrong with SparseMap"); |
167 | 167 |
} |
168 | 168 |
|
169 | 169 |
// ComposeMap |
170 | 170 |
{ |
171 | 171 |
typedef ComposeMap<DoubleMap, ReadMap<B,A> > CompMap; |
172 | 172 |
checkConcept<ReadMap<B,double>, CompMap>(); |
173 |
CompMap map1(DoubleMap(),ReadMap<B,A>()); |
|
173 |
CompMap map1 = CompMap(DoubleMap(),ReadMap<B,A>()); |
|
174 | 174 |
CompMap map2 = composeMap(DoubleMap(), ReadMap<B,A>()); |
175 | 175 |
|
176 | 176 |
SparseMap<double, bool> m1(false); m1[3.14] = true; |
177 | 177 |
RangeMap<double> m2(2); m2[0] = 3.0; m2[1] = 3.14; |
178 | 178 |
check(!composeMap(m1,m2)[0] && composeMap(m1,m2)[1], |
179 | 179 |
"Something is wrong with ComposeMap") |
180 | 180 |
} |
181 | 181 |
|
182 | 182 |
// CombineMap |
183 | 183 |
{ |
184 | 184 |
typedef CombineMap<DoubleMap, DoubleMap, std::plus<double> > CombMap; |
185 | 185 |
checkConcept<ReadMap<A,double>, CombMap>(); |
186 |
CombMap map1(DoubleMap(), DoubleMap()); |
|
186 |
CombMap map1 = CombMap(DoubleMap(), DoubleMap()); |
|
187 | 187 |
CombMap map2 = combineMap(DoubleMap(), DoubleMap(), std::plus<double>()); |
188 | 188 |
|
189 | 189 |
check(combineMap(constMap<B,int,2>(), identityMap<B>(), &binc)[B()] == 3, |
190 | 190 |
"Something is wrong with CombineMap"); |
191 | 191 |
} |
192 | 192 |
|
193 | 193 |
// FunctorToMap, MapToFunctor |
194 | 194 |
{ |
195 | 195 |
checkConcept<ReadMap<A,B>, FunctorToMap<F,A,B> >(); |
196 | 196 |
checkConcept<ReadMap<A,B>, FunctorToMap<F> >(); |
197 | 197 |
FunctorToMap<F> map1; |
198 |
FunctorToMap<F> map2(F()); |
|
198 |
FunctorToMap<F> map2 = FunctorToMap<F>(F()); |
|
199 | 199 |
B b = functorToMap(F())[A()]; |
200 | 200 |
|
201 | 201 |
checkConcept<ReadMap<A,B>, MapToFunctor<ReadMap<A,B> > >(); |
202 |
MapToFunctor<ReadMap<A,B> > map(ReadMap<A,B>()); |
|
202 |
MapToFunctor<ReadMap<A,B> > map = MapToFunctor<ReadMap<A,B> >(ReadMap<A,B>()); |
|
203 | 203 |
|
204 | 204 |
check(functorToMap(&func)[A()] == 3, |
205 | 205 |
"Something is wrong with FunctorToMap"); |
206 | 206 |
check(mapToFunctor(constMap<A,int>(2))(A()) == 2, |
207 | 207 |
"Something is wrong with MapToFunctor"); |
208 | 208 |
check(mapToFunctor(functorToMap(&func))(A()) == 3 && |
209 | 209 |
mapToFunctor(functorToMap(&func))[A()] == 3, |
210 | 210 |
"Something is wrong with FunctorToMap or MapToFunctor"); |
211 | 211 |
check(functorToMap(mapToFunctor(constMap<A,int>(2)))[A()] == 2, |
212 | 212 |
"Something is wrong with FunctorToMap or MapToFunctor"); |
213 | 213 |
} |
214 | 214 |
|
215 | 215 |
// ConvertMap |
216 | 216 |
{ |
217 | 217 |
checkConcept<ReadMap<double,double>, |
218 | 218 |
ConvertMap<ReadMap<double, int>, double> >(); |
219 | 219 |
ConvertMap<RangeMap<bool>, int> map1(rangeMap(1, true)); |
220 | 220 |
ConvertMap<RangeMap<bool>, int> map2 = convertMap<int>(rangeMap(2, false)); |
221 | 221 |
} |
222 | 222 |
|
223 | 223 |
// ForkMap |
224 | 224 |
{ |
225 | 225 |
checkConcept<DoubleWriteMap, ForkMap<DoubleWriteMap, DoubleWriteMap> >(); |
226 | 226 |
|
227 | 227 |
typedef RangeMap<double> RM; |
228 | 228 |
typedef SparseMap<int, double> SM; |
229 | 229 |
RM m1(10, -1); |
230 | 230 |
SM m2(-1); |
231 | 231 |
checkConcept<ReadWriteMap<int, double>, ForkMap<RM, SM> >(); |
232 | 232 |
checkConcept<ReadWriteMap<int, double>, ForkMap<SM, RM> >(); |
233 | 233 |
ForkMap<RM, SM> map1(m1,m2); |
234 | 234 |
ForkMap<SM, RM> map2 = forkMap(m2,m1); |
235 | 235 |
map2.set(5, 10); |
236 | 236 |
check(m1[1] == -1 && m1[5] == 10 && m2[1] == -1 && |
237 | 237 |
m2[5] == 10 && map2[1] == -1 && map2[5] == 10, |
238 | 238 |
"Something is wrong with ForkMap"); |
239 | 239 |
} |
240 | 240 |
|
241 | 241 |
// Arithmetic maps: |
242 | 242 |
// - AddMap, SubMap, MulMap, DivMap |
243 | 243 |
// - ShiftMap, ShiftWriteMap, ScaleMap, ScaleWriteMap |
244 | 244 |
// - NegMap, NegWriteMap, AbsMap |
245 | 245 |
{ |
246 | 246 |
checkConcept<DoubleMap, AddMap<DoubleMap,DoubleMap> >(); |
247 | 247 |
checkConcept<DoubleMap, SubMap<DoubleMap,DoubleMap> >(); |
248 | 248 |
checkConcept<DoubleMap, MulMap<DoubleMap,DoubleMap> >(); |
249 | 249 |
checkConcept<DoubleMap, DivMap<DoubleMap,DoubleMap> >(); |
250 | 250 |
|
251 | 251 |
ConstMap<int, double> c1(1.0), c2(3.14); |
252 | 252 |
IdentityMap<int> im; |
253 | 253 |
ConvertMap<IdentityMap<int>, double> id(im); |
254 | 254 |
check(addMap(c1,id)[0] == 1.0 && addMap(c1,id)[10] == 11.0, |
255 | 255 |
"Something is wrong with AddMap"); |
256 | 256 |
check(subMap(id,c1)[0] == -1.0 && subMap(id,c1)[10] == 9.0, |
257 | 257 |
"Something is wrong with SubMap"); |
258 | 258 |
check(mulMap(id,c2)[0] == 0 && mulMap(id,c2)[2] == 6.28, |
259 | 259 |
"Something is wrong with MulMap"); |
260 | 260 |
check(divMap(c2,id)[1] == 3.14 && divMap(c2,id)[2] == 1.57, |
261 | 261 |
"Something is wrong with DivMap"); |
262 | 262 |
|
263 | 263 |
checkConcept<DoubleMap, ShiftMap<DoubleMap> >(); |
264 | 264 |
checkConcept<DoubleWriteMap, ShiftWriteMap<DoubleWriteMap> >(); |
265 | 265 |
checkConcept<DoubleMap, ScaleMap<DoubleMap> >(); |
266 | 266 |
checkConcept<DoubleWriteMap, ScaleWriteMap<DoubleWriteMap> >(); |
0 comments (0 inline)