0
7
0
1
1
81
1
9
17
| 1 | 1 |
LEMON code without an explicit copyright notice is covered by the following |
| 2 | 2 |
copyright/license. |
| 3 | 3 |
|
| 4 |
Copyright (C) 2003- |
|
| 4 |
Copyright (C) 2003-2010 Egervary Jeno Kombinatorikus Optimalizalasi |
|
| 5 | 5 |
Kutatocsoport (Egervary Combinatorial Optimization Research Group, |
| 6 | 6 |
EGRES). |
| 7 | 7 |
|
| 8 | 8 |
=========================================================================== |
| 9 | 9 |
Boost Software License, Version 1.0 |
| 10 | 10 |
=========================================================================== |
| 11 | 11 |
|
| 12 | 12 |
Permission is hereby granted, free of charge, to any person or organization |
| 13 | 13 |
obtaining a copy of the software and accompanying documentation covered by |
| 14 | 14 |
this license (the "Software") to use, reproduce, display, distribute, |
| 15 | 15 |
execute, and transmit the Software, and to prepare derivative works of the |
| 16 | 16 |
Software, and to permit third-parties to whom the Software is furnished to |
| 17 | 17 |
do so, all subject to the following: |
| 18 | 18 |
|
| 19 | 19 |
The copyright notices in the Software and this entire statement, including |
| 20 | 20 |
the above license grant, this restriction and the following disclaimer, |
| 21 | 21 |
must be included in all copies of the Software, in whole or in part, and |
| 22 | 22 |
all derivative works of the Software, unless such copies or derivative |
| 23 | 23 |
works are solely in the form of machine-executable object code generated by |
| 24 | 24 |
a source language processor. |
| 25 | 25 |
|
| 26 | 26 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 27 | 27 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 28 | 28 |
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT |
| 1 |
2010-03-19 Version 1.2 released |
|
| 2 |
|
|
| 3 |
This is major feature release |
|
| 4 |
|
|
| 5 |
* New algorithms |
|
| 6 |
* Bellman-Ford algorithm (#51) |
|
| 7 |
* Minimum mean cycle algorithms (#179) |
|
| 8 |
* Karp, Hartman-Orlin and Howard algorithms |
|
| 9 |
* New minimum cost flow algorithms (#180) |
|
| 10 |
* Cost Scaling algorithms |
|
| 11 |
* Capacity Scaling algorithm |
|
| 12 |
* Cycle-Canceling algorithms |
|
| 13 |
* Planarity related algorithms (#62) |
|
| 14 |
* Planarity checking algorithm |
|
| 15 |
* Planar embedding algorithm |
|
| 16 |
* Schnyder's planar drawing algorithm |
|
| 17 |
* Coloring planar graphs with five or six colors |
|
| 18 |
* Fractional matching algorithms (#314) |
|
| 19 |
* New data structures |
|
| 20 |
* StaticDigraph structure (#68) |
|
| 21 |
* Several new priority queue structures (#50, #301) |
|
| 22 |
* Fibonacci, Radix, Bucket, Pairing, Binomial |
|
| 23 |
D-ary and fourary heaps (#301) |
|
| 24 |
* Iterable map structures (#73) |
|
| 25 |
* Other new tools and functionality |
|
| 26 |
* Map utility functions (#320) |
|
| 27 |
* Reserve functions are added to ListGraph and SmartGraph (#311) |
|
| 28 |
* A resize() function is added to HypercubeGraph (#311) |
|
| 29 |
* A count() function is added to CrossRefMap (#302) |
|
| 30 |
* Support for multiple targets in Suurballe using fullInit() (#181) |
|
| 31 |
* Traits class and named parameters for Suurballe (#323) |
|
| 32 |
* Separate reset() and resetParams() functions in NetworkSimplex |
|
| 33 |
to handle graph changes (#327) |
|
| 34 |
* tolerance() functions are added to HaoOrlin (#306) |
|
| 35 |
* Implementation improvements |
|
| 36 |
* Improvements in weighted matching algorithms (#314) |
|
| 37 |
* Jumpstart initialization |
|
| 38 |
* ArcIt iteration is based on out-arc lists instead of in-arc lists |
|
| 39 |
in ListDigraph (#311) |
|
| 40 |
* Faster add row operation in CbcMip (#203) |
|
| 41 |
* Better implementation for split() in ListDigraph (#311) |
|
| 42 |
* ArgParser can also throw exception instead of exit(1) (#332) |
|
| 43 |
* Miscellaneous |
|
| 44 |
* A simple interactive bootstrap script |
|
| 45 |
* Doc improvements (#62,#180,#299,#302,#303,#304,#307,#311,#331,#315, |
|
| 46 |
#316,#319) |
|
| 47 |
* BibTeX references in the doc (#184) |
|
| 48 |
* Optionally use valgrind when running tests |
|
| 49 |
* Also check ReferenceMapTag in concept checks (#312) |
|
| 50 |
* dimacs-solver uses long long type by default. |
|
| 51 |
* Several bugfixes (compared to release 1.1): |
|
| 52 |
#295: Suppress MSVC warnings using pragmas |
|
| 53 |
----: Various CMAKE related improvements |
|
| 54 |
* Remove duplications from doc/CMakeLists.txt |
|
| 55 |
* Rename documentation install folder from 'docs' to 'html' |
|
| 56 |
* Add tools/CMakeLists.txt to the tarball |
|
| 57 |
* Generate and install LEMONConfig.cmake |
|
| 58 |
* Change the label of the html project in Visual Studio |
|
| 59 |
* Fix the check for the 'long long' type |
|
| 60 |
* Put the version string into config.h |
|
| 61 |
* Minor CMake improvements |
|
| 62 |
* Set the version to 'hg-tip' if everything fails |
|
| 63 |
#311: Add missing 'explicit' keywords |
|
| 64 |
#302: Fix the implementation and doc of CrossRefMap |
|
| 65 |
#308: Remove duplicate list_graph.h entry from source list |
|
| 66 |
#307: Bugfix in Preflow and Circulation |
|
| 67 |
#305: Bugfix and extension in the rename script |
|
| 68 |
#312: Also check ReferenceMapTag in concept checks |
|
| 69 |
#250: Bugfix in pathSource() and pathTarget() |
|
| 70 |
#321: Use pathCopy(from,to) instead of copyPath(to,from) |
|
| 71 |
#322: Distribure LEMONConfig.cmake.in |
|
| 72 |
#330: Bug fix in map_extender.h |
|
| 73 |
#336: Fix the date field comment of graphToEps() output |
|
| 74 |
#323: Bug fix in Suurballe |
|
| 75 |
#335: Fix clear() function in ExtendFindEnum |
|
| 76 |
#337: Use void* as the LPX object pointer |
|
| 77 |
#317: Fix (and improve) error message in mip_test.cc |
|
| 78 |
Remove unnecessary OsiCbc dependency |
|
| 79 |
#356: Allow multiple executions of weighted matching algorithms (#356) |
|
| 80 |
|
|
| 1 | 81 |
2009-05-13 Version 1.1 released |
| 2 | 82 |
|
| 3 | 83 |
This is the second stable release of the 1.x series. It |
| 4 | 84 |
features a better coverage of the tools available in the 0.x |
| 5 | 85 |
series, a thoroughly reworked LP/MIP interface plus various |
| 6 | 86 |
improvements in the existing tools. |
| 7 | 87 |
|
| 8 | 88 |
* Much improved M$ Windows support |
| 9 | 89 |
* Various improvements in the CMAKE build system |
| 10 | 90 |
* Compilation warnings are fixed/suppressed |
| 11 | 91 |
* Support IBM xlC compiler |
| 12 | 92 |
* New algorithms |
| 13 | 93 |
* Connectivity related algorithms (#61) |
| 14 | 94 |
* Euler walks (#65) |
| 15 | 95 |
* Preflow push-relabel max. flow algorithm (#176) |
| 16 | 96 |
* Circulation algorithm (push-relabel based) (#175) |
| 17 | 97 |
* Suurballe algorithm (#47) |
| 18 | 98 |
* Gomory-Hu algorithm (#66) |
| 19 | 99 |
* Hao-Orlin algorithm (#58) |
| 20 | 100 |
* Edmond's maximum cardinality and weighted matching algorithms |
| 21 | 101 |
in general graphs (#48,#265) |
| 22 | 102 |
* Minimum cost arborescence/branching (#60) |
| 23 | 103 |
* Network Simplex min. cost flow algorithm (#234) |
| 24 | 104 |
* New data structures |
| ... | ... |
@@ -51,49 +131,49 @@ |
| 51 | 131 |
* Several bugfixes (compared to release 1.0): |
| 52 | 132 |
#170: Bugfix SmartDigraph::split() |
| 53 | 133 |
#171: Bugfix in SmartGraph::restoreSnapshot() |
| 54 | 134 |
#172: Extended test cases for graphs and digraphs |
| 55 | 135 |
#173: Bugfix in Random |
| 56 | 136 |
* operator()s always return a double now |
| 57 | 137 |
* the faulty real<Num>(Num) and real<Num>(Num,Num) |
| 58 | 138 |
have been removed |
| 59 | 139 |
#187: Remove DijkstraWidestPathOperationTraits |
| 60 | 140 |
#61: Bugfix in DfsVisit |
| 61 | 141 |
#193: Bugfix in GraphReader::skipSection() |
| 62 | 142 |
#195: Bugfix in ConEdgeIt() |
| 63 | 143 |
#197: Bugfix in heap unionfind |
| 64 | 144 |
* This bug affects Edmond's general matching algorithms |
| 65 | 145 |
#207: Fix 'make install' without 'make html' using CMAKE |
| 66 | 146 |
#208: Suppress or fix VS2008 compilation warnings |
| 67 | 147 |
----: Update the LEMON icon |
| 68 | 148 |
----: Enable the component-based installer |
| 69 | 149 |
(in installers made by CPACK) |
| 70 | 150 |
----: Set the proper version for CMAKE in the tarballs |
| 71 | 151 |
(made by autotools) |
| 72 | 152 |
----: Minor clarification in the LICENSE file |
| 73 | 153 |
----: Add missing unistd.h include to time_measure.h |
| 74 | 154 |
#204: Compilation bug fixed in graph_to_eps.h with VS2005 |
| 75 |
#214,#215: windows.h should never be included by |
|
| 155 |
#214,#215: windows.h should never be included by LEMON headers |
|
| 76 | 156 |
#230: Build systems check the availability of 'long long' type |
| 77 | 157 |
#229: Default implementation of Tolerance<> is used for integer types |
| 78 | 158 |
#211,#212: Various fixes for compiling on AIX |
| 79 | 159 |
----: Improvements in CMAKE config |
| 80 | 160 |
- docs is installed in share/doc/ |
| 81 | 161 |
- detects newer versions of Ghostscript |
| 82 | 162 |
#239: Fix missing 'inline' specifier in time_measure.h |
| 83 | 163 |
#274,#280: Install lemon/config.h |
| 84 | 164 |
#275: Prefix macro names with LEMON_ in lemon/config.h |
| 85 | 165 |
----: Small script for making the release tarballs added |
| 86 | 166 |
----: Minor improvement in unify-sources.sh (a76f55d7d397) |
| 87 | 167 |
|
| 88 | 168 |
2009-03-27 LEMON joins to the COIN-OR initiative |
| 89 | 169 |
|
| 90 | 170 |
COIN-OR (Computational Infrastructure for Operations Research, |
| 91 | 171 |
http://www.coin-or.org) project is an initiative to spur the |
| 92 | 172 |
development of open-source software for the operations research |
| 93 | 173 |
community. |
| 94 | 174 |
|
| 95 | 175 |
2008-10-13 Version 1.0 released |
| 96 | 176 |
|
| 97 | 177 |
This is the first stable release of LEMON. Compared to the 0.x |
| 98 | 178 |
release series, it features a considerably smaller but more |
| 99 | 179 |
matured set of tools. The API has also completely revised and |
| ... | ... |
@@ -242,56 +242,48 @@ |
| 242 | 242 |
*/ |
| 243 | 243 |
|
| 244 | 244 |
/** |
| 245 | 245 |
@defgroup heaps Heap Structures |
| 246 | 246 |
@ingroup datas |
| 247 | 247 |
\brief %Heap structures implemented in LEMON. |
| 248 | 248 |
|
| 249 | 249 |
This group contains the heap structures implemented in LEMON. |
| 250 | 250 |
|
| 251 | 251 |
LEMON provides several heap classes. They are efficient implementations |
| 252 | 252 |
of the abstract data type \e priority \e queue. They store items with |
| 253 | 253 |
specified values called \e priorities in such a way that finding and |
| 254 | 254 |
removing the item with minimum priority are efficient. |
| 255 | 255 |
The basic operations are adding and erasing items, changing the priority |
| 256 | 256 |
of an item, etc. |
| 257 | 257 |
|
| 258 | 258 |
Heaps are crucial in several algorithms, such as Dijkstra and Prim. |
| 259 | 259 |
The heap implementations have the same interface, thus any of them can be |
| 260 | 260 |
used easily in such algorithms. |
| 261 | 261 |
|
| 262 | 262 |
\sa \ref concepts::Heap "Heap concept" |
| 263 | 263 |
*/ |
| 264 | 264 |
|
| 265 | 265 |
/** |
| 266 |
@defgroup matrices Matrices |
|
| 267 |
@ingroup datas |
|
| 268 |
\brief Two dimensional data storages implemented in LEMON. |
|
| 269 |
|
|
| 270 |
This group contains two dimensional data storages implemented in LEMON. |
|
| 271 |
*/ |
|
| 272 |
|
|
| 273 |
/** |
|
| 274 | 266 |
@defgroup auxdat Auxiliary Data Structures |
| 275 | 267 |
@ingroup datas |
| 276 | 268 |
\brief Auxiliary data structures implemented in LEMON. |
| 277 | 269 |
|
| 278 | 270 |
This group contains some data structures implemented in LEMON in |
| 279 | 271 |
order to make it easier to implement combinatorial algorithms. |
| 280 | 272 |
*/ |
| 281 | 273 |
|
| 282 | 274 |
/** |
| 283 | 275 |
@defgroup geomdat Geometric Data Structures |
| 284 | 276 |
@ingroup auxdat |
| 285 | 277 |
\brief Geometric data structures implemented in LEMON. |
| 286 | 278 |
|
| 287 | 279 |
This group contains geometric data structures implemented in LEMON. |
| 288 | 280 |
|
| 289 | 281 |
- \ref lemon::dim2::Point "dim2::Point" implements a two dimensional |
| 290 | 282 |
vector with the usual operations. |
| 291 | 283 |
- \ref lemon::dim2::Box "dim2::Box" can be used to determine the |
| 292 | 284 |
rectangular bounding box of a set of \ref lemon::dim2::Point |
| 293 | 285 |
"dim2::Point"'s. |
| 294 | 286 |
*/ |
| 295 | 287 |
|
| 296 | 288 |
/** |
| 297 | 289 |
@defgroup matrices Matrices |
| ... | ... |
@@ -451,61 +443,61 @@ |
| 451 | 443 |
*/ |
| 452 | 444 |
|
| 453 | 445 |
/** |
| 454 | 446 |
@defgroup min_mean_cycle Minimum Mean Cycle Algorithms |
| 455 | 447 |
@ingroup algs |
| 456 | 448 |
\brief Algorithms for finding minimum mean cycles. |
| 457 | 449 |
|
| 458 | 450 |
This group contains the algorithms for finding minimum mean cycles |
| 459 | 451 |
\ref clrs01algorithms, \ref amo93networkflows. |
| 460 | 452 |
|
| 461 | 453 |
The \e minimum \e mean \e cycle \e problem is to find a directed cycle |
| 462 | 454 |
of minimum mean length (cost) in a digraph. |
| 463 | 455 |
The mean length of a cycle is the average length of its arcs, i.e. the |
| 464 | 456 |
ratio between the total length of the cycle and the number of arcs on it. |
| 465 | 457 |
|
| 466 | 458 |
This problem has an important connection to \e conservative \e length |
| 467 | 459 |
\e functions, too. A length function on the arcs of a digraph is called |
| 468 | 460 |
conservative if and only if there is no directed cycle of negative total |
| 469 | 461 |
length. For an arbitrary length function, the negative of the minimum |
| 470 | 462 |
cycle mean is the smallest \f$\epsilon\f$ value so that increasing the |
| 471 | 463 |
arc lengths uniformly by \f$\epsilon\f$ results in a conservative length |
| 472 | 464 |
function. |
| 473 | 465 |
|
| 474 | 466 |
LEMON contains three algorithms for solving the minimum mean cycle problem: |
| 475 |
- \ref |
|
| 467 |
- \ref KarpMmc Karp's original algorithm \ref amo93networkflows, |
|
| 476 | 468 |
\ref dasdan98minmeancycle. |
| 477 |
- \ref |
|
| 469 |
- \ref HartmannOrlinMmc Hartmann-Orlin's algorithm, which is an improved |
|
| 478 | 470 |
version of Karp's algorithm \ref dasdan98minmeancycle. |
| 479 |
- \ref |
|
| 471 |
- \ref HowardMmc Howard's policy iteration algorithm |
|
| 480 | 472 |
\ref dasdan98minmeancycle. |
| 481 | 473 |
|
| 482 |
In practice, the Howard algorithm proved to be by far the most efficient |
|
| 483 |
one, though the best known theoretical bound on its running time is |
|
| 484 |
exponential. |
|
| 485 |
Both Karp and HartmannOrlin algorithms run in time O(ne) and use space |
|
| 486 |
O(n<sup>2</sup>+e), but the latter one is typically faster due to the |
|
| 487 |
applied early termination scheme. |
|
| 474 |
In practice, the \ref HowardMmc "Howard" algorithm proved to be by far the |
|
| 475 |
most efficient one, though the best known theoretical bound on its running |
|
| 476 |
time is exponential. |
|
| 477 |
Both \ref KarpMmc "Karp" and \ref HartmannOrlinMmc "Hartmann-Orlin" algorithms |
|
| 478 |
run in time O(ne) and use space O(n<sup>2</sup>+e), but the latter one is |
|
| 479 |
typically faster due to the applied early termination scheme. |
|
| 488 | 480 |
*/ |
| 489 | 481 |
|
| 490 | 482 |
/** |
| 491 | 483 |
@defgroup matching Matching Algorithms |
| 492 | 484 |
@ingroup algs |
| 493 | 485 |
\brief Algorithms for finding matchings in graphs and bipartite graphs. |
| 494 | 486 |
|
| 495 | 487 |
This group contains the algorithms for calculating |
| 496 | 488 |
matchings in graphs and bipartite graphs. The general matching problem is |
| 497 | 489 |
finding a subset of the edges for which each node has at most one incident |
| 498 | 490 |
edge. |
| 499 | 491 |
|
| 500 | 492 |
There are several different algorithms for calculate matchings in |
| 501 | 493 |
graphs. The matching problems in bipartite graphs are generally |
| 502 | 494 |
easier than in general graphs. The goal of the matching optimization |
| 503 | 495 |
can be finding maximum cardinality, maximum weight or minimum cost |
| 504 | 496 |
matching. The search can be constrained to find perfect or |
| 505 | 497 |
maximum cardinality matching. |
| 506 | 498 |
|
| 507 | 499 |
The matching algorithms implemented in LEMON: |
| 508 | 500 |
- \ref MaxBipartiteMatching Hopcroft-Karp augmenting path algorithm |
| 509 | 501 |
for calculating maximum cardinality matching in bipartite graphs. |
| 510 | 502 |
- \ref PrBipartiteMatching Push-relabel algorithm |
| 511 | 503 |
for calculating maximum cardinality matching in bipartite graphs. |
| ... | ... |
@@ -14,54 +14,61 @@ |
| 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 |
#ifndef LEMON_ARG_PARSER_H |
| 20 | 20 |
#define LEMON_ARG_PARSER_H |
| 21 | 21 |
|
| 22 | 22 |
#include <vector> |
| 23 | 23 |
#include <map> |
| 24 | 24 |
#include <list> |
| 25 | 25 |
#include <string> |
| 26 | 26 |
#include <iostream> |
| 27 | 27 |
#include <sstream> |
| 28 | 28 |
#include <algorithm> |
| 29 | 29 |
#include <lemon/assert.h> |
| 30 | 30 |
|
| 31 | 31 |
///\ingroup misc |
| 32 | 32 |
///\file |
| 33 | 33 |
///\brief A tool to parse command line arguments. |
| 34 | 34 |
|
| 35 | 35 |
namespace lemon {
|
| 36 | 36 |
|
| 37 | 37 |
///Exception used by ArgParser |
| 38 |
|
|
| 39 |
///Exception used by ArgParser. |
|
| 40 |
/// |
|
| 38 | 41 |
class ArgParserException : public Exception {
|
| 39 | 42 |
public: |
| 43 |
/// Reasons for failure |
|
| 44 |
|
|
| 45 |
/// Reasons for failure. |
|
| 46 |
/// |
|
| 40 | 47 |
enum Reason {
|
| 41 |
HELP, /// <tt>--help</tt> option was given |
|
| 42 |
UNKNOWN_OPT, /// Unknown option was given |
|
| 43 |
|
|
| 48 |
HELP, ///< <tt>--help</tt> option was given. |
|
| 49 |
UNKNOWN_OPT, ///< Unknown option was given. |
|
| 50 |
INVALID_OPT ///< Invalid combination of options. |
|
| 44 | 51 |
}; |
| 45 | 52 |
|
| 46 | 53 |
private: |
| 47 | 54 |
Reason _reason; |
| 48 | 55 |
|
| 49 | 56 |
public: |
| 50 | 57 |
///Constructor |
| 51 | 58 |
ArgParserException(Reason r) throw() : _reason(r) {}
|
| 52 | 59 |
///Virtual destructor |
| 53 | 60 |
virtual ~ArgParserException() throw() {}
|
| 54 | 61 |
///A short description of the exception |
| 55 | 62 |
virtual const char* what() const throw() {
|
| 56 | 63 |
switch(_reason) |
| 57 | 64 |
{
|
| 58 | 65 |
case HELP: |
| 59 | 66 |
return "lemon::ArgParseException: ask for help"; |
| 60 | 67 |
break; |
| 61 | 68 |
case UNKNOWN_OPT: |
| 62 | 69 |
return "lemon::ArgParseException: unknown option"; |
| 63 | 70 |
break; |
| 64 | 71 |
case INVALID_OPT: |
| 65 | 72 |
return "lemon::ArgParseException: invalid combination of options"; |
| 66 | 73 |
break; |
| 67 | 74 |
} |
| ... | ... |
@@ -7,177 +7,128 @@ |
| 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 |
#ifndef LEMON_BELLMAN_FORD_H |
| 20 | 20 |
#define LEMON_BELLMAN_FORD_H |
| 21 | 21 |
|
| 22 | 22 |
/// \ingroup shortest_path |
| 23 | 23 |
/// \file |
| 24 | 24 |
/// \brief Bellman-Ford algorithm. |
| 25 | 25 |
|
| 26 | 26 |
#include <lemon/list_graph.h> |
| 27 | 27 |
#include <lemon/bits/path_dump.h> |
| 28 | 28 |
#include <lemon/core.h> |
| 29 | 29 |
#include <lemon/error.h> |
| 30 | 30 |
#include <lemon/maps.h> |
| 31 |
#include <lemon/tolerance.h> |
|
| 32 | 31 |
#include <lemon/path.h> |
| 33 | 32 |
|
| 34 | 33 |
#include <limits> |
| 35 | 34 |
|
| 36 | 35 |
namespace lemon {
|
| 37 | 36 |
|
| 38 |
/// \brief Default |
|
| 37 |
/// \brief Default OperationTraits for the BellmanFord algorithm class. |
|
| 39 | 38 |
/// |
| 40 | 39 |
/// This operation traits class defines all computational operations |
| 41 | 40 |
/// and constants that are used in the Bellman-Ford algorithm. |
| 42 | 41 |
/// The default implementation is based on the \c numeric_limits class. |
| 43 | 42 |
/// If the numeric type does not have infinity value, then the maximum |
| 44 | 43 |
/// value is used as extremal infinity value. |
| 45 |
/// |
|
| 46 |
/// \see BellmanFordToleranceOperationTraits |
|
| 47 | 44 |
template < |
| 48 | 45 |
typename V, |
| 49 | 46 |
bool has_inf = std::numeric_limits<V>::has_infinity> |
| 50 | 47 |
struct BellmanFordDefaultOperationTraits {
|
| 51 |
/// \ |
|
| 48 |
/// \e |
|
| 52 | 49 |
typedef V Value; |
| 53 | 50 |
/// \brief Gives back the zero value of the type. |
| 54 | 51 |
static Value zero() {
|
| 55 | 52 |
return static_cast<Value>(0); |
| 56 | 53 |
} |
| 57 | 54 |
/// \brief Gives back the positive infinity value of the type. |
| 58 | 55 |
static Value infinity() {
|
| 59 | 56 |
return std::numeric_limits<Value>::infinity(); |
| 60 | 57 |
} |
| 61 | 58 |
/// \brief Gives back the sum of the given two elements. |
| 62 | 59 |
static Value plus(const Value& left, const Value& right) {
|
| 63 | 60 |
return left + right; |
| 64 | 61 |
} |
| 65 | 62 |
/// \brief Gives back \c true only if the first value is less than |
| 66 | 63 |
/// the second. |
| 67 | 64 |
static bool less(const Value& left, const Value& right) {
|
| 68 | 65 |
return left < right; |
| 69 | 66 |
} |
| 70 | 67 |
}; |
| 71 | 68 |
|
| 72 | 69 |
template <typename V> |
| 73 | 70 |
struct BellmanFordDefaultOperationTraits<V, false> {
|
| 74 | 71 |
typedef V Value; |
| 75 | 72 |
static Value zero() {
|
| 76 | 73 |
return static_cast<Value>(0); |
| 77 | 74 |
} |
| 78 | 75 |
static Value infinity() {
|
| 79 | 76 |
return std::numeric_limits<Value>::max(); |
| 80 | 77 |
} |
| 81 | 78 |
static Value plus(const Value& left, const Value& right) {
|
| 82 | 79 |
if (left == infinity() || right == infinity()) return infinity(); |
| 83 | 80 |
return left + right; |
| 84 | 81 |
} |
| 85 | 82 |
static bool less(const Value& left, const Value& right) {
|
| 86 | 83 |
return left < right; |
| 87 | 84 |
} |
| 88 | 85 |
}; |
| 89 | 86 |
|
| 90 |
/// \brief Operation traits for the BellmanFord algorithm class |
|
| 91 |
/// using tolerance. |
|
| 92 |
/// |
|
| 93 |
/// This operation traits class defines all computational operations |
|
| 94 |
/// and constants that are used in the Bellman-Ford algorithm. |
|
| 95 |
/// The only difference between this implementation and |
|
| 96 |
/// \ref BellmanFordDefaultOperationTraits is that this class uses |
|
| 97 |
/// the \ref Tolerance "tolerance technique" in its \ref less() |
|
| 98 |
/// function. |
|
| 99 |
/// |
|
| 100 |
/// \tparam V The value type. |
|
| 101 |
/// \tparam eps The epsilon value for the \ref less() function. |
|
| 102 |
/// By default, it is the epsilon value used by \ref Tolerance |
|
| 103 |
/// "Tolerance<V>". |
|
| 104 |
/// |
|
| 105 |
/// \see BellmanFordDefaultOperationTraits |
|
| 106 |
#ifdef DOXYGEN |
|
| 107 |
template <typename V, V eps> |
|
| 108 |
#else |
|
| 109 |
template < |
|
| 110 |
typename V, |
|
| 111 |
V eps = Tolerance<V>::def_epsilon> |
|
| 112 |
#endif |
|
| 113 |
struct BellmanFordToleranceOperationTraits {
|
|
| 114 |
/// \brief Value type for the algorithm. |
|
| 115 |
typedef V Value; |
|
| 116 |
/// \brief Gives back the zero value of the type. |
|
| 117 |
static Value zero() {
|
|
| 118 |
return static_cast<Value>(0); |
|
| 119 |
} |
|
| 120 |
/// \brief Gives back the positive infinity value of the type. |
|
| 121 |
static Value infinity() {
|
|
| 122 |
return std::numeric_limits<Value>::infinity(); |
|
| 123 |
} |
|
| 124 |
/// \brief Gives back the sum of the given two elements. |
|
| 125 |
static Value plus(const Value& left, const Value& right) {
|
|
| 126 |
return left + right; |
|
| 127 |
} |
|
| 128 |
/// \brief Gives back \c true only if the first value is less than |
|
| 129 |
/// the second. |
|
| 130 |
static bool less(const Value& left, const Value& right) {
|
|
| 131 |
return left + eps < right; |
|
| 132 |
} |
|
| 133 |
}; |
|
| 134 |
|
|
| 135 | 87 |
/// \brief Default traits class of BellmanFord class. |
| 136 | 88 |
/// |
| 137 | 89 |
/// Default traits class of BellmanFord class. |
| 138 | 90 |
/// \param GR The type of the digraph. |
| 139 | 91 |
/// \param LEN The type of the length map. |
| 140 | 92 |
template<typename GR, typename LEN> |
| 141 | 93 |
struct BellmanFordDefaultTraits {
|
| 142 | 94 |
/// The type of the digraph the algorithm runs on. |
| 143 | 95 |
typedef GR Digraph; |
| 144 | 96 |
|
| 145 | 97 |
/// \brief The type of the map that stores the arc lengths. |
| 146 | 98 |
/// |
| 147 | 99 |
/// The type of the map that stores the arc lengths. |
| 148 | 100 |
/// It must conform to the \ref concepts::ReadMap "ReadMap" concept. |
| 149 | 101 |
typedef LEN LengthMap; |
| 150 | 102 |
|
| 151 | 103 |
/// The type of the arc lengths. |
| 152 | 104 |
typedef typename LEN::Value Value; |
| 153 | 105 |
|
| 154 | 106 |
/// \brief Operation traits for Bellman-Ford algorithm. |
| 155 | 107 |
/// |
| 156 | 108 |
/// It defines the used operations and the infinity value for the |
| 157 | 109 |
/// given \c Value type. |
| 158 |
/// \see BellmanFordDefaultOperationTraits, |
|
| 159 |
/// BellmanFordToleranceOperationTraits |
|
| 110 |
/// \see BellmanFordDefaultOperationTraits |
|
| 160 | 111 |
typedef BellmanFordDefaultOperationTraits<Value> OperationTraits; |
| 161 | 112 |
|
| 162 | 113 |
/// \brief The type of the map that stores the last arcs of the |
| 163 | 114 |
/// shortest paths. |
| 164 | 115 |
/// |
| 165 | 116 |
/// The type of the map that stores the last |
| 166 | 117 |
/// arcs of the shortest paths. |
| 167 | 118 |
/// It must conform to the \ref concepts::WriteMap "WriteMap" concept. |
| 168 | 119 |
typedef typename GR::template NodeMap<typename GR::Arc> PredMap; |
| 169 | 120 |
|
| 170 | 121 |
/// \brief Instantiates a \c PredMap. |
| 171 | 122 |
/// |
| 172 | 123 |
/// This function instantiates a \ref PredMap. |
| 173 | 124 |
/// \param g is the digraph to which we would like to define the |
| 174 | 125 |
/// \ref PredMap. |
| 175 | 126 |
static PredMap *createPredMap(const GR& g) {
|
| 176 | 127 |
return new PredMap(g); |
| 177 | 128 |
} |
| 178 | 129 |
|
| 179 | 130 |
/// \brief The type of the map that stores the distances of the nodes. |
| 180 | 131 |
/// |
| 181 | 132 |
/// The type of the map that stores the distances of the nodes. |
| 182 | 133 |
/// It must conform to the \ref concepts::WriteMap "WriteMap" concept. |
| 183 | 134 |
typedef typename GR::template NodeMap<typename LEN::Value> DistMap; |
| ... | ... |
@@ -865,50 +816,49 @@ |
| 865 | 816 |
|
| 866 | 817 |
/// \brief Default traits class of bellmanFord() function. |
| 867 | 818 |
/// |
| 868 | 819 |
/// Default traits class of bellmanFord() function. |
| 869 | 820 |
/// \tparam GR The type of the digraph. |
| 870 | 821 |
/// \tparam LEN The type of the length map. |
| 871 | 822 |
template <typename GR, typename LEN> |
| 872 | 823 |
struct BellmanFordWizardDefaultTraits {
|
| 873 | 824 |
/// The type of the digraph the algorithm runs on. |
| 874 | 825 |
typedef GR Digraph; |
| 875 | 826 |
|
| 876 | 827 |
/// \brief The type of the map that stores the arc lengths. |
| 877 | 828 |
/// |
| 878 | 829 |
/// The type of the map that stores the arc lengths. |
| 879 | 830 |
/// It must meet the \ref concepts::ReadMap "ReadMap" concept. |
| 880 | 831 |
typedef LEN LengthMap; |
| 881 | 832 |
|
| 882 | 833 |
/// The type of the arc lengths. |
| 883 | 834 |
typedef typename LEN::Value Value; |
| 884 | 835 |
|
| 885 | 836 |
/// \brief Operation traits for Bellman-Ford algorithm. |
| 886 | 837 |
/// |
| 887 | 838 |
/// It defines the used operations and the infinity value for the |
| 888 | 839 |
/// given \c Value type. |
| 889 |
/// \see BellmanFordDefaultOperationTraits, |
|
| 890 |
/// BellmanFordToleranceOperationTraits |
|
| 840 |
/// \see BellmanFordDefaultOperationTraits |
|
| 891 | 841 |
typedef BellmanFordDefaultOperationTraits<Value> OperationTraits; |
| 892 | 842 |
|
| 893 | 843 |
/// \brief The type of the map that stores the last |
| 894 | 844 |
/// arcs of the shortest paths. |
| 895 | 845 |
/// |
| 896 | 846 |
/// The type of the map that stores the last arcs of the shortest paths. |
| 897 | 847 |
/// It must conform to the \ref concepts::WriteMap "WriteMap" concept. |
| 898 | 848 |
typedef typename GR::template NodeMap<typename GR::Arc> PredMap; |
| 899 | 849 |
|
| 900 | 850 |
/// \brief Instantiates a \c PredMap. |
| 901 | 851 |
/// |
| 902 | 852 |
/// This function instantiates a \ref PredMap. |
| 903 | 853 |
/// \param g is the digraph to which we would like to define the |
| 904 | 854 |
/// \ref PredMap. |
| 905 | 855 |
static PredMap *createPredMap(const GR &g) {
|
| 906 | 856 |
return new PredMap(g); |
| 907 | 857 |
} |
| 908 | 858 |
|
| 909 | 859 |
/// \brief The type of the map that stores the distances of the nodes. |
| 910 | 860 |
/// |
| 911 | 861 |
/// The type of the map that stores the distances of the nodes. |
| 912 | 862 |
/// It must conform to the \ref concepts::WriteMap "WriteMap" concept. |
| 913 | 863 |
typedef typename GR::template NodeMap<Value> DistMap; |
| 914 | 864 |
| ... | ... |
@@ -17,49 +17,49 @@ |
| 17 | 17 |
*/ |
| 18 | 18 |
|
| 19 | 19 |
#ifndef LEMON_HARTMANN_ORLIN_MMC_H |
| 20 | 20 |
#define LEMON_HARTMANN_ORLIN_MMC_H |
| 21 | 21 |
|
| 22 | 22 |
/// \ingroup min_mean_cycle |
| 23 | 23 |
/// |
| 24 | 24 |
/// \file |
| 25 | 25 |
/// \brief Hartmann-Orlin's algorithm for finding a minimum mean cycle. |
| 26 | 26 |
|
| 27 | 27 |
#include <vector> |
| 28 | 28 |
#include <limits> |
| 29 | 29 |
#include <lemon/core.h> |
| 30 | 30 |
#include <lemon/path.h> |
| 31 | 31 |
#include <lemon/tolerance.h> |
| 32 | 32 |
#include <lemon/connectivity.h> |
| 33 | 33 |
|
| 34 | 34 |
namespace lemon {
|
| 35 | 35 |
|
| 36 | 36 |
/// \brief Default traits class of HartmannOrlinMmc class. |
| 37 | 37 |
/// |
| 38 | 38 |
/// Default traits class of HartmannOrlinMmc class. |
| 39 | 39 |
/// \tparam GR The type of the digraph. |
| 40 | 40 |
/// \tparam CM The type of the cost map. |
| 41 |
/// It must conform to the \ref concepts:: |
|
| 41 |
/// It must conform to the \ref concepts::ReadMap "ReadMap" concept. |
|
| 42 | 42 |
#ifdef DOXYGEN |
| 43 | 43 |
template <typename GR, typename CM> |
| 44 | 44 |
#else |
| 45 | 45 |
template <typename GR, typename CM, |
| 46 | 46 |
bool integer = std::numeric_limits<typename CM::Value>::is_integer> |
| 47 | 47 |
#endif |
| 48 | 48 |
struct HartmannOrlinMmcDefaultTraits |
| 49 | 49 |
{
|
| 50 | 50 |
/// The type of the digraph |
| 51 | 51 |
typedef GR Digraph; |
| 52 | 52 |
/// The type of the cost map |
| 53 | 53 |
typedef CM CostMap; |
| 54 | 54 |
/// The type of the arc costs |
| 55 | 55 |
typedef typename CostMap::Value Cost; |
| 56 | 56 |
|
| 57 | 57 |
/// \brief The large cost type used for internal computations |
| 58 | 58 |
/// |
| 59 | 59 |
/// The large cost type used for internal computations. |
| 60 | 60 |
/// It is \c long \c long if the \c Cost type is integer, |
| 61 | 61 |
/// otherwise it is \c double. |
| 62 | 62 |
/// \c Cost must be convertible to \c LargeCost. |
| 63 | 63 |
typedef double LargeCost; |
| 64 | 64 |
|
| 65 | 65 |
/// The tolerance type used for internal computations |
| ... | ... |
@@ -78,49 +78,49 @@ |
| 78 | 78 |
struct HartmannOrlinMmcDefaultTraits<GR, CM, true> |
| 79 | 79 |
{
|
| 80 | 80 |
typedef GR Digraph; |
| 81 | 81 |
typedef CM CostMap; |
| 82 | 82 |
typedef typename CostMap::Value Cost; |
| 83 | 83 |
#ifdef LEMON_HAVE_LONG_LONG |
| 84 | 84 |
typedef long long LargeCost; |
| 85 | 85 |
#else |
| 86 | 86 |
typedef long LargeCost; |
| 87 | 87 |
#endif |
| 88 | 88 |
typedef lemon::Tolerance<LargeCost> Tolerance; |
| 89 | 89 |
typedef lemon::Path<Digraph> Path; |
| 90 | 90 |
}; |
| 91 | 91 |
|
| 92 | 92 |
|
| 93 | 93 |
/// \addtogroup min_mean_cycle |
| 94 | 94 |
/// @{
|
| 95 | 95 |
|
| 96 | 96 |
/// \brief Implementation of the Hartmann-Orlin algorithm for finding |
| 97 | 97 |
/// a minimum mean cycle. |
| 98 | 98 |
/// |
| 99 | 99 |
/// This class implements the Hartmann-Orlin algorithm for finding |
| 100 | 100 |
/// a directed cycle of minimum mean cost in a digraph |
| 101 | 101 |
/// \ref amo93networkflows, \ref dasdan98minmeancycle. |
| 102 |
/// It is an improved version of \ref |
|
| 102 |
/// It is an improved version of \ref KarpMmc "Karp"'s original algorithm, |
|
| 103 | 103 |
/// it applies an efficient early termination scheme. |
| 104 | 104 |
/// It runs in time O(ne) and uses space O(n<sup>2</sup>+e). |
| 105 | 105 |
/// |
| 106 | 106 |
/// \tparam GR The type of the digraph the algorithm runs on. |
| 107 | 107 |
/// \tparam CM The type of the cost map. The default |
| 108 | 108 |
/// map type is \ref concepts::Digraph::ArcMap "GR::ArcMap<int>". |
| 109 | 109 |
/// \tparam TR The traits class that defines various types used by the |
| 110 | 110 |
/// algorithm. By default, it is \ref HartmannOrlinMmcDefaultTraits |
| 111 | 111 |
/// "HartmannOrlinMmcDefaultTraits<GR, CM>". |
| 112 | 112 |
/// In most cases, this parameter should not be set directly, |
| 113 | 113 |
/// consider to use the named template parameters instead. |
| 114 | 114 |
#ifdef DOXYGEN |
| 115 | 115 |
template <typename GR, typename CM, typename TR> |
| 116 | 116 |
#else |
| 117 | 117 |
template < typename GR, |
| 118 | 118 |
typename CM = typename GR::template ArcMap<int>, |
| 119 | 119 |
typename TR = HartmannOrlinMmcDefaultTraits<GR, CM> > |
| 120 | 120 |
#endif |
| 121 | 121 |
class HartmannOrlinMmc |
| 122 | 122 |
{
|
| 123 | 123 |
public: |
| 124 | 124 |
|
| 125 | 125 |
/// The type of the digraph |
| 126 | 126 |
typedef typename TR::Digraph Digraph; |
| ... | ... |
@@ -83,49 +83,48 @@ |
| 83 | 83 |
bf_test.addSource(s); |
| 84 | 84 |
bf_test.addSource(s, 1); |
| 85 | 85 |
b = bf_test.processNextRound(); |
| 86 | 86 |
b = bf_test.processNextWeakRound(); |
| 87 | 87 |
|
| 88 | 88 |
bf_test.start(); |
| 89 | 89 |
bf_test.checkedStart(); |
| 90 | 90 |
bf_test.limitedStart(k); |
| 91 | 91 |
|
| 92 | 92 |
l = const_bf_test.dist(t); |
| 93 | 93 |
e = const_bf_test.predArc(t); |
| 94 | 94 |
s = const_bf_test.predNode(t); |
| 95 | 95 |
b = const_bf_test.reached(t); |
| 96 | 96 |
d = const_bf_test.distMap(); |
| 97 | 97 |
p = const_bf_test.predMap(); |
| 98 | 98 |
pp = const_bf_test.path(t); |
| 99 | 99 |
pp = const_bf_test.negativeCycle(); |
| 100 | 100 |
|
| 101 | 101 |
for (BF::ActiveIt it(const_bf_test); it != INVALID; ++it) {}
|
| 102 | 102 |
} |
| 103 | 103 |
{
|
| 104 | 104 |
BF::SetPredMap<concepts::ReadWriteMap<Node,Arc> > |
| 105 | 105 |
::SetDistMap<concepts::ReadWriteMap<Node,Value> > |
| 106 | 106 |
::SetOperationTraits<BellmanFordDefaultOperationTraits<Value> > |
| 107 |
::SetOperationTraits<BellmanFordToleranceOperationTraits<Value, 0> > |
|
| 108 | 107 |
::Create bf_test(gr,length); |
| 109 | 108 |
|
| 110 | 109 |
LengthMap length_map; |
| 111 | 110 |
concepts::ReadWriteMap<Node,Arc> pred_map; |
| 112 | 111 |
concepts::ReadWriteMap<Node,Value> dist_map; |
| 113 | 112 |
|
| 114 | 113 |
bf_test |
| 115 | 114 |
.lengthMap(length_map) |
| 116 | 115 |
.predMap(pred_map) |
| 117 | 116 |
.distMap(dist_map); |
| 118 | 117 |
|
| 119 | 118 |
bf_test.run(s); |
| 120 | 119 |
bf_test.run(s,k); |
| 121 | 120 |
|
| 122 | 121 |
bf_test.init(); |
| 123 | 122 |
bf_test.addSource(s); |
| 124 | 123 |
bf_test.addSource(s, 1); |
| 125 | 124 |
b = bf_test.processNextRound(); |
| 126 | 125 |
b = bf_test.processNextWeakRound(); |
| 127 | 126 |
|
| 128 | 127 |
bf_test.start(); |
| 129 | 128 |
bf_test.checkedStart(); |
| 130 | 129 |
bf_test.limitedStart(k); |
| 131 | 130 |
|
0 comments (0 inline)