... | ... |
@@ -6,25 +6,26 @@ |
6 | 6 |
|
7 | 7 |
lib_LTLIBRARIES += lemon/libemon.la |
8 | 8 |
|
9 | 9 |
lemon_libemon_la_SOURCES = \ |
10 | 10 |
lemon/arg_parser.cc \ |
11 | 11 |
lemon/base.cc \ |
12 | 12 |
lemon/color.cc \ |
13 | 13 |
lemon/lp_base.cc \ |
14 | 14 |
lemon/lp_skeleton.cc \ |
15 | 15 |
lemon/random.cc \ |
16 | 16 |
lemon/bits/windows.cc |
17 | 17 |
|
18 |
|
|
18 |
nodist_lemon_HEADERS = lemon/config.h |
|
19 |
|
|
19 | 20 |
lemon_libemon_la_CXXFLAGS = \ |
20 | 21 |
$(AM_CXXFLAGS) \ |
21 | 22 |
$(GLPK_CFLAGS) \ |
22 | 23 |
$(CPLEX_CFLAGS) \ |
23 | 24 |
$(SOPLEX_CXXFLAGS) \ |
24 | 25 |
$(CLP_CXXFLAGS) \ |
25 | 26 |
$(CBC_CXXFLAGS) |
26 | 27 |
|
27 | 28 |
lemon_libemon_la_LDFLAGS = \ |
28 | 29 |
$(GLPK_LIBS) \ |
29 | 30 |
$(CPLEX_LIBS) \ |
30 | 31 |
$(SOPLEX_LIBS) \ |
... | ... |
@@ -53,25 +54,24 @@ |
53 | 54 |
|
54 | 55 |
lemon_HEADERS += \ |
55 | 56 |
lemon/adaptors.h \ |
56 | 57 |
lemon/arg_parser.h \ |
57 | 58 |
lemon/assert.h \ |
58 | 59 |
lemon/bfs.h \ |
59 | 60 |
lemon/bin_heap.h \ |
60 | 61 |
lemon/cbc.h \ |
61 | 62 |
lemon/circulation.h \ |
62 | 63 |
lemon/clp.h \ |
63 | 64 |
lemon/color.h \ |
64 | 65 |
lemon/concept_check.h \ |
65 |
lemon/config.h \ |
|
66 | 66 |
lemon/connectivity.h \ |
67 | 67 |
lemon/counter.h \ |
68 | 68 |
lemon/core.h \ |
69 | 69 |
lemon/cplex.h \ |
70 | 70 |
lemon/dfs.h \ |
71 | 71 |
lemon/dijkstra.h \ |
72 | 72 |
lemon/dim2.h \ |
73 | 73 |
lemon/dimacs.h \ |
74 | 74 |
lemon/edge_set.h \ |
75 | 75 |
lemon/elevator.h \ |
76 | 76 |
lemon/error.h \ |
77 | 77 |
lemon/euler.h \ |
... | ... |
@@ -13,25 +13,25 @@ |
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_CORE_H |
20 | 20 |
#define LEMON_CORE_H |
21 | 21 |
|
22 | 22 |
#include <vector> |
23 | 23 |
#include <algorithm> |
24 | 24 |
|
25 |
#include <lemon/ |
|
25 |
#include <lemon/config.h> |
|
26 | 26 |
#include <lemon/bits/enable_if.h> |
27 | 27 |
#include <lemon/bits/traits.h> |
28 | 28 |
#include <lemon/assert.h> |
29 | 29 |
|
30 | 30 |
///\file |
31 | 31 |
///\brief LEMON core utilities. |
32 | 32 |
/// |
33 | 33 |
///This header file contains core utilities for LEMON. |
34 | 34 |
///It is automatically included by all graph types, therefore it usually |
35 | 35 |
///do not have to be included directly. |
36 | 36 |
|
37 | 37 |
namespace lemon { |
0 comments (0 inline)