0
3
0
| 1 | 1 |
/* -*- C++ -*- |
| 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 |
///\ingroup demos |
| 20 | 20 |
///\file |
| 21 | 21 |
///\brief Demonstrating graph input and output |
| 22 | 22 |
/// |
| 23 | 23 |
/// This simple demo program gives an example of how to read and write |
| 24 | 24 |
/// a graph and additional maps (on the nodes or the edges) from/to a |
| 25 | 25 |
/// stream. |
| 26 | 26 |
/// |
| 27 | 27 |
/// \include reader_writer_demo.cc |
| 28 | 28 |
|
| 29 | 29 |
#include <iostream> |
| 30 | 30 |
#include <lemon/smart_graph.h> |
| 31 | 31 |
#include <lemon/lgf_reader.h> |
| 32 | 32 |
#include <lemon/lgf_writer.h> |
| 33 | 33 |
#include <lemon/random.h> |
| 34 | 34 |
|
| 35 | 35 |
|
| 36 | 36 |
using namespace lemon; |
| 37 | 37 |
|
| 38 | 38 |
int main(int argc, const char *argv[]) {
|
| 39 | 39 |
const int n = argc > 1 ? std::atoi(argv[1]) : 20; |
| 40 |
const int e = argc > 2 ? std::atoi(argv[2]) : static_cast<int>(n * log(n)); |
|
| 40 |
const int e = argc > 2 ? std::atoi(argv[2]) : static_cast<int>(n * std::log(double(n))); |
|
| 41 | 41 |
const int m = argc > 3 ? std::atoi(argv[3]) : 100; |
| 42 | 42 |
|
| 43 | 43 |
SmartDigraph digraph; |
| 44 | 44 |
|
| 45 | 45 |
std::stringstream ss; |
| 46 | 46 |
|
| 47 | 47 |
try {
|
| 48 | 48 |
|
| 49 | 49 |
typedef SmartDigraph Digraph; |
| 50 | 50 |
typedef Digraph::Node Node; |
| 51 | 51 |
typedef Digraph::Arc Arc; |
| 52 | 52 |
typedef Digraph::ArcIt ArcIt; |
| 53 | 53 |
|
| 54 | 54 |
typedef Digraph::NodeMap<int> PotentialMap; |
| 55 | 55 |
typedef Digraph::ArcMap<int> CapacityMap; |
| 56 | 56 |
typedef Digraph::ArcMap<std::string> NameMap; |
| 57 | 57 |
|
| 58 | 58 |
Digraph digraph; |
| 59 | 59 |
PotentialMap potential(digraph); |
| 60 | 60 |
CapacityMap capacity(digraph); |
| 61 | 61 |
NameMap name(digraph); |
| 62 | 62 |
|
| 63 | 63 |
std::vector<Node> nodes; |
| 64 | 64 |
for (int i = 0; i < n; ++i) {
|
| 65 | 65 |
Node node = digraph.addNode(); |
| 66 | 66 |
potential[node] = rnd[m]; |
| 67 | 67 |
nodes.push_back(node); |
| 68 | 68 |
} |
| 69 | 69 |
|
| 70 | 70 |
std::vector<Arc> arcs; |
| 71 | 71 |
for (int i = 0; i < e; ++i) {
|
| 72 | 72 |
int s = rnd[n]; |
| 73 | 73 |
int t = rnd[n]; |
| 74 | 74 |
int c = rnd[m]; |
| 75 | 75 |
Arc arc = digraph.addArc(nodes[s], nodes[t]); |
| 76 | 76 |
capacity[arc] = c; |
| 77 | 77 |
std::ostringstream os; |
| 78 | 78 |
os << "arc \t" << i << std::endl; |
| 79 | 79 |
name[arc] = os.str(); |
| 80 | 80 |
arcs.push_back(arc); |
| 81 | 81 |
} |
| 82 | 82 |
|
| 83 | 83 |
|
| 84 | 84 |
DigraphWriter<Digraph>(ss, digraph). |
| 85 | 85 |
nodeMap("potential", potential).
|
| 86 | 86 |
arcMap("capacity", capacity).
|
| 87 | 87 |
arcMap("name", name).
|
| 88 | 88 |
node("source", nodes[0]).
|
| 89 | 89 |
node("target", nodes[1]).
|
| 90 | 90 |
arc("bottleneck", arcs[e / 2]).
|
| 91 | 91 |
attribute("creator", "lemon library").
|
| 92 | 92 |
run(); |
| 93 | 93 |
|
| 94 | 94 |
} catch (DataFormatError& error) {
|
| 95 | 95 |
std::cerr << error.what() << std::endl; |
| 96 | 96 |
} |
| 97 | 97 |
|
| 98 | 98 |
try {
|
| 99 | 99 |
|
| 100 | 100 |
typedef SmartDigraph Digraph; |
| 101 | 101 |
typedef Digraph::Node Node; |
| 102 | 102 |
typedef Digraph::Arc Arc; |
| 103 | 103 |
typedef Digraph::ArcIt ArcIt; |
| 104 | 104 |
|
| 105 | 105 |
typedef Digraph::NodeMap<int> LabelMap; |
| 106 | 106 |
typedef Digraph::NodeMap<int> PotentialMap; |
| 107 | 107 |
typedef Digraph::ArcMap<int> CapacityMap; |
| 108 | 108 |
typedef Digraph::ArcMap<std::string> NameMap; |
| 109 | 109 |
|
| 110 | 110 |
Digraph digraph; |
| 111 | 111 |
LabelMap label(digraph); |
| 112 | 112 |
PotentialMap potential(digraph); |
| 113 | 113 |
CapacityMap capacity(digraph); |
| 114 | 114 |
NameMap name(digraph); |
| 115 | 115 |
|
| 116 | 116 |
Node s, t; |
| 117 | 117 |
Arc a; |
| 118 | 118 |
|
| 119 | 119 |
std::string creator; |
| 120 | 120 |
|
| 121 | 121 |
for (int i = 0; i < n; ++i) {
|
| 122 | 122 |
Node node = digraph.addNode(); |
| 123 | 123 |
label[node] = i; |
| 124 | 124 |
} |
| 125 | 125 |
|
| 126 | 126 |
DigraphReader<Digraph>(ss, digraph). |
| 127 | 127 |
useNodes(label). |
| 128 | 128 |
nodeMap("potential", potential).
|
| 129 | 129 |
arcMap("capacity", capacity).
|
| 130 | 130 |
arcMap("name", name).
|
| 131 | 131 |
node("source", s).
|
| 132 | 132 |
node("target", t).
|
| 133 | 133 |
arc("bottleneck", a).
|
| 134 | 134 |
attribute("creator", creator).
|
| 135 | 135 |
run(); |
| 136 | 136 |
| 1 | 1 |
/* -*- C++ -*- |
| 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 |
#ifndef LEMON_GRAPH_TO_EPS_H |
| 20 | 20 |
#define LEMON_GRAPH_TO_EPS_H |
| 21 | 21 |
|
| 22 | 22 |
#include<iostream> |
| 23 | 23 |
#include<fstream> |
| 24 | 24 |
#include<sstream> |
| 25 | 25 |
#include<algorithm> |
| 26 | 26 |
#include<vector> |
| 27 | 27 |
|
| 28 | 28 |
#ifndef WIN32 |
| 29 | 29 |
#include<sys/time.h> |
| 30 | 30 |
#include<ctime> |
| 31 | 31 |
#else |
| 32 |
#define WIN32_LEAN_AND_MEAN |
|
| 33 |
#define NOMINMAX |
|
| 32 | 34 |
#include<windows.h> |
| 33 | 35 |
#endif |
| 34 | 36 |
|
| 35 | 37 |
#include<lemon/math.h> |
| 36 | 38 |
#include<lemon/bits/invalid.h> |
| 37 | 39 |
#include<lemon/dim2.h> |
| 38 | 40 |
#include<lemon/maps.h> |
| 39 | 41 |
#include<lemon/color.h> |
| 40 | 42 |
#include<lemon/bits/bezier.h> |
| 41 | 43 |
|
| 42 | 44 |
|
| 43 | 45 |
///\ingroup eps_io |
| 44 | 46 |
///\file |
| 45 | 47 |
///\brief A well configurable tool for visualizing graphs |
| 46 | 48 |
|
| 47 | 49 |
namespace lemon {
|
| 48 | 50 |
|
| 49 | 51 |
namespace _graph_to_eps_bits {
|
| 50 | 52 |
template<class MT> |
| 51 | 53 |
class _NegY {
|
| 52 | 54 |
public: |
| 53 | 55 |
typedef typename MT::Key Key; |
| 54 | 56 |
typedef typename MT::Value Value; |
| 55 | 57 |
const MT ↦ |
| 56 | 58 |
int yscale; |
| 57 | 59 |
_NegY(const MT &m,bool b) : map(m), yscale(1-b*2) {}
|
| 58 | 60 |
Value operator[](Key n) { return Value(map[n].x,map[n].y*yscale);}
|
| 59 | 61 |
}; |
| 60 | 62 |
} |
| 61 | 63 |
|
| 62 | 64 |
///Default traits class of \ref GraphToEps |
| 63 | 65 |
|
| 64 | 66 |
///Default traits class of \ref GraphToEps |
| 65 | 67 |
/// |
| 66 | 68 |
///\c G is the type of the underlying graph. |
| 67 | 69 |
template<class G> |
| 68 | 70 |
struct DefaultGraphToEpsTraits |
| 69 | 71 |
{
|
| 70 | 72 |
typedef G Graph; |
| 71 | 73 |
typedef typename Graph::Node Node; |
| 72 | 74 |
typedef typename Graph::NodeIt NodeIt; |
| 73 | 75 |
typedef typename Graph::Arc Arc; |
| 74 | 76 |
typedef typename Graph::ArcIt ArcIt; |
| 75 | 77 |
typedef typename Graph::InArcIt InArcIt; |
| 76 | 78 |
typedef typename Graph::OutArcIt OutArcIt; |
| 77 | 79 |
|
| 78 | 80 |
|
| 79 | 81 |
const Graph &g; |
| 80 | 82 |
|
| 81 | 83 |
std::ostream& os; |
| 82 | 84 |
|
| 83 | 85 |
typedef ConstMap<typename Graph::Node,dim2::Point<double> > CoordsMapType; |
| 84 | 86 |
CoordsMapType _coords; |
| 85 | 87 |
ConstMap<typename Graph::Node,double > _nodeSizes; |
| 86 | 88 |
ConstMap<typename Graph::Node,int > _nodeShapes; |
| 87 | 89 |
|
| 88 | 90 |
ConstMap<typename Graph::Node,Color > _nodeColors; |
| 89 | 91 |
ConstMap<typename Graph::Arc,Color > _arcColors; |
| 90 | 92 |
|
| 91 | 93 |
ConstMap<typename Graph::Arc,double > _arcWidths; |
| 92 | 94 |
|
| 93 | 95 |
double _arcWidthScale; |
| 94 | 96 |
|
| 95 | 97 |
double _nodeScale; |
| 96 | 98 |
double _xBorder, _yBorder; |
| 97 | 99 |
double _scale; |
| 98 | 100 |
double _nodeBorderQuotient; |
| 99 | 101 |
|
| 100 | 102 |
bool _drawArrows; |
| 101 | 103 |
double _arrowLength, _arrowWidth; |
| 102 | 104 |
|
| 103 | 105 |
bool _showNodes, _showArcs; |
| 104 | 106 |
|
| 105 | 107 |
bool _enableParallel; |
| 106 | 108 |
double _parArcDist; |
| 107 | 109 |
|
| 108 | 110 |
bool _showNodeText; |
| 109 | 111 |
ConstMap<typename Graph::Node,bool > _nodeTexts; |
| 110 | 112 |
double _nodeTextSize; |
| 111 | 113 |
|
| 112 | 114 |
bool _showNodePsText; |
| 113 | 115 |
ConstMap<typename Graph::Node,bool > _nodePsTexts; |
| 114 | 116 |
char *_nodePsTextsPreamble; |
| 115 | 117 |
|
| 116 | 118 |
bool _undirected; |
| 117 | 119 |
|
| 118 | 120 |
bool _pleaseRemoveOsStream; |
| 119 | 121 |
|
| 120 | 122 |
bool _scaleToA4; |
| 121 | 123 |
|
| 122 | 124 |
std::string _title; |
| 123 | 125 |
std::string _copyright; |
| 124 | 126 |
|
| 125 | 127 |
enum NodeTextColorType |
| 126 | 128 |
{ DIST_COL=0, DIST_BW=1, CUST_COL=2, SAME_COL=3 } _nodeTextColorType;
|
| 127 | 129 |
ConstMap<typename Graph::Node,Color > _nodeTextColors; |
| 1 | 1 |
/* -*- C++ -*- |
| 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 |
#ifndef LEMON_TIME_MEASURE_H |
| 20 | 20 |
#define LEMON_TIME_MEASURE_H |
| 21 | 21 |
|
| 22 | 22 |
///\ingroup timecount |
| 23 | 23 |
///\file |
| 24 | 24 |
///\brief Tools for measuring cpu usage |
| 25 | 25 |
|
| 26 | 26 |
#ifdef WIN32 |
| 27 |
#define WIN32_LEAN_AND_MEAN |
|
| 28 |
#define NOMINMAX |
|
| 27 | 29 |
#include <windows.h> |
| 28 | 30 |
#include <cmath> |
| 29 | 31 |
#else |
| 30 | 32 |
#include <sys/times.h> |
| 31 | 33 |
#include <sys/time.h> |
| 32 | 34 |
#endif |
| 33 | 35 |
|
| 36 |
#include <string> |
|
| 34 | 37 |
#include <fstream> |
| 35 | 38 |
#include <iostream> |
| 36 | 39 |
|
| 37 | 40 |
namespace lemon {
|
| 38 | 41 |
|
| 39 | 42 |
/// \addtogroup timecount |
| 40 | 43 |
/// @{
|
| 41 | 44 |
|
| 42 | 45 |
/// A class to store (cpu)time instances. |
| 43 | 46 |
|
| 44 | 47 |
/// This class stores five time values. |
| 45 | 48 |
/// - a real time |
| 46 | 49 |
/// - a user cpu time |
| 47 | 50 |
/// - a system cpu time |
| 48 | 51 |
/// - a user cpu time of children |
| 49 | 52 |
/// - a system cpu time of children |
| 50 | 53 |
/// |
| 51 | 54 |
/// TimeStamp's can be added to or substracted from each other and |
| 52 | 55 |
/// they can be pushed to a stream. |
| 53 | 56 |
/// |
| 54 | 57 |
/// In most cases, perhaps the \ref Timer or the \ref TimeReport |
| 55 | 58 |
/// class is what you want to use instead. |
| 56 | 59 |
/// |
| 57 | 60 |
///\author Alpar Juttner |
| 58 | 61 |
|
| 59 | 62 |
class TimeStamp |
| 60 | 63 |
{
|
| 61 | 64 |
double utime; |
| 62 | 65 |
double stime; |
| 63 | 66 |
double cutime; |
| 64 | 67 |
double cstime; |
| 65 | 68 |
double rtime; |
| 66 | 69 |
|
| 67 | 70 |
void _reset() {
|
| 68 | 71 |
utime = stime = cutime = cstime = rtime = 0; |
| 69 | 72 |
} |
| 70 | 73 |
|
| 71 | 74 |
public: |
| 72 | 75 |
|
| 73 | 76 |
///Read the current time values of the process |
| 74 | 77 |
void stamp() |
| 75 | 78 |
{
|
| 76 | 79 |
#ifndef WIN32 |
| 77 | 80 |
timeval tv; |
| 78 | 81 |
gettimeofday(&tv, 0); |
| 79 | 82 |
rtime=tv.tv_sec+double(tv.tv_usec)/1e6; |
| 80 | 83 |
|
| 81 | 84 |
tms ts; |
| 82 | 85 |
double tck=sysconf(_SC_CLK_TCK); |
| 83 | 86 |
times(&ts); |
| 84 | 87 |
utime=ts.tms_utime/tck; |
| 85 | 88 |
stime=ts.tms_stime/tck; |
| 86 | 89 |
cutime=ts.tms_cutime/tck; |
| 87 | 90 |
cstime=ts.tms_cstime/tck; |
| 88 | 91 |
#else |
| 89 | 92 |
static const double ch = 4294967296.0e-7; |
| 90 | 93 |
static const double cl = 1.0e-7; |
| 91 | 94 |
|
| 92 | 95 |
FILETIME system; |
| 93 | 96 |
GetSystemTimeAsFileTime(&system); |
| 94 | 97 |
rtime = ch * system.dwHighDateTime + cl * system.dwLowDateTime; |
| 95 | 98 |
|
| 96 | 99 |
FILETIME create, exit, kernel, user; |
| 97 | 100 |
if (GetProcessTimes(GetCurrentProcess(),&create, &exit, &kernel, &user)) {
|
| 98 | 101 |
utime = ch * user.dwHighDateTime + cl * user.dwLowDateTime; |
| 99 | 102 |
stime = ch * kernel.dwHighDateTime + cl * kernel.dwLowDateTime; |
| 100 | 103 |
cutime = 0; |
| 101 | 104 |
cstime = 0; |
| 102 | 105 |
} else {
|
| 103 | 106 |
rtime = 0; |
| 104 | 107 |
utime = 0; |
| 105 | 108 |
stime = 0; |
| 106 | 109 |
cutime = 0; |
| 107 | 110 |
cstime = 0; |
| 108 | 111 |
} |
| 109 | 112 |
#endif |
| 110 | 113 |
} |
| 111 | 114 |
|
| 112 | 115 |
/// Constructor initializing with zero |
| 113 | 116 |
TimeStamp() |
| 114 | 117 |
{ _reset(); }
|
| 115 | 118 |
///Constructor initializing with the current time values of the process |
| 116 | 119 |
TimeStamp(void *) { stamp();}
|
| 117 | 120 |
|
| 118 | 121 |
///Set every time value to zero |
| 119 | 122 |
TimeStamp &reset() {_reset();return *this;}
|
| 120 | 123 |
|
| 121 | 124 |
///\e |
| 122 | 125 |
TimeStamp &operator+=(const TimeStamp &b) |
| 123 | 126 |
{
|
| 124 | 127 |
utime+=b.utime; |
| 125 | 128 |
stime+=b.stime; |
| 126 | 129 |
cutime+=b.cutime; |
| 127 | 130 |
cstime+=b.cstime; |
| 128 | 131 |
rtime+=b.rtime; |
| 129 | 132 |
return *this; |
0 comments (0 inline)