0
2
0
126
117
| ... | ... |
@@ -24,5 +24,5 @@ |
| 24 | 24 |
#include <vector> |
| 25 |
#include <map> |
|
| 25 | 26 |
|
| 26 | 27 |
#include <lemon/core.h> |
| 27 |
#include <lemon/smart_graph.h> |
|
| 28 | 28 |
|
| ... | ... |
@@ -32,4 +32,2 @@ |
| 32 | 32 |
|
| 33 |
#include <map> |
|
| 34 |
|
|
| 35 | 33 |
namespace lemon {
|
| ... | ... |
@@ -1908,3 +1906,2 @@ |
| 1908 | 1906 |
/// in the inverse map. |
| 1909 |
/// |
|
| 1910 | 1907 |
/// The values of the map can be accessed |
| ... | ... |
@@ -1912,2 +1909,5 @@ |
| 1912 | 1909 |
/// |
| 1910 |
/// This type is not reference map, so it cannot be modified with |
|
| 1911 |
/// the subscription operator. |
|
| 1912 |
/// |
|
| 1913 | 1913 |
/// \tparam GR The graph type. |
| ... | ... |
@@ -2314,14 +2314,21 @@ |
| 2314 | 2314 |
|
| 2315 |
/// \brief Dynamic iterable bool map. |
|
| 2315 |
/// \brief Dynamic iterable \c bool map. |
|
| 2316 | 2316 |
/// |
| 2317 |
/// This class provides a special graph map type which can store for |
|
| 2318 |
/// each graph item(node, arc, edge, etc.) a bool value. For both |
|
| 2319 |
/// the true and the false values it is possible to iterate on the |
|
| 2320 |
/// keys. |
|
| 2317 |
/// This class provides a special graph map type which can store a |
|
| 2318 |
/// \c bool value for graph items (\c Node, \c Arc or \c Edge). |
|
| 2319 |
/// For both \c true and \c false values it is possible to iterate on |
|
| 2320 |
/// the keys. |
|
| 2321 | 2321 |
/// |
| 2322 |
/// \param GR The graph type. |
|
| 2323 |
/// \param ITEM One of the graph's item types, the key of the map. |
|
| 2324 |
|
|
| 2322 |
/// This type is a reference map, so it can be modified with the |
|
| 2323 |
/// subscription operator. |
|
| 2324 |
/// |
|
| 2325 |
/// \tparam GR The graph type. |
|
| 2326 |
/// \tparam K The key type of the map (\c GR::Node, \c GR::Arc or |
|
| 2327 |
/// \c GR::Edge). |
|
| 2328 |
/// |
|
| 2329 |
/// \see IterableIntMap, IterableValueMap |
|
| 2330 |
/// \see CrossRefMap |
|
| 2331 |
template <typename GR, typename K> |
|
| 2325 | 2332 |
class IterableBoolMap |
| 2326 |
: protected ItemSetTraits<GR, |
|
| 2333 |
: protected ItemSetTraits<GR, K>::template Map<int>::Type {
|
|
| 2327 | 2334 |
private: |
| ... | ... |
@@ -2329,6 +2336,6 @@ |
| 2329 | 2336 |
|
| 2330 |
typedef typename ItemSetTraits<Graph, ITEM>::ItemIt KeyIt; |
|
| 2331 |
typedef typename ItemSetTraits<GR, ITEM>::template Map<int>::Type Parent; |
|
| 2332 |
|
|
| 2333 |
std::vector<ITEM> _array; |
|
| 2337 |
typedef typename ItemSetTraits<GR, K>::ItemIt KeyIt; |
|
| 2338 |
typedef typename ItemSetTraits<GR, K>::template Map<int>::Type Parent; |
|
| 2339 |
|
|
| 2340 |
std::vector<K> _array; |
|
| 2334 | 2341 |
int _sep; |
| ... | ... |
@@ -2337,3 +2344,3 @@ |
| 2337 | 2344 |
|
| 2338 |
/// Indicates that the map |
|
| 2345 |
/// Indicates that the map is reference map. |
|
| 2339 | 2346 |
typedef True ReferenceMapTag; |
| ... | ... |
@@ -2341,3 +2348,3 @@ |
| 2341 | 2348 |
/// The key type |
| 2342 |
typedef |
|
| 2349 |
typedef K Key; |
|
| 2343 | 2350 |
/// The value type |
| ... | ... |
@@ -2355,6 +2362,6 @@ |
| 2355 | 2362 |
|
| 2356 |
/// \brief |
|
| 2363 |
/// \brief Reference to the value of the map. |
|
| 2357 | 2364 |
/// |
| 2358 |
/// This class is similar to the bool type. It can be converted to |
|
| 2359 |
/// bool and it provides the same operators. |
|
| 2365 |
/// This class is similar to the \c bool type. It can be converted to |
|
| 2366 |
/// \c bool and it provides the same operators. |
|
| 2360 | 2367 |
class Reference {
|
| ... | ... |
@@ -2456,5 +2463,5 @@ |
| 2456 | 2463 |
|
| 2457 |
/// \brief Returns the number of the keys mapped to true. |
|
| 2464 |
/// \brief Returns the number of the keys mapped to \c true. |
|
| 2458 | 2465 |
/// |
| 2459 |
/// Returns the number of the keys mapped to true. |
|
| 2466 |
/// Returns the number of the keys mapped to \c true. |
|
| 2460 | 2467 |
int trueNum() const {
|
| ... | ... |
@@ -2463,5 +2470,5 @@ |
| 2463 | 2470 |
|
| 2464 |
/// \brief Returns the number of the keys mapped to false. |
|
| 2471 |
/// \brief Returns the number of the keys mapped to \c false. |
|
| 2465 | 2472 |
/// |
| 2466 |
/// Returns the number of the keys mapped to false. |
|
| 2473 |
/// Returns the number of the keys mapped to \c false. |
|
| 2467 | 2474 |
int falseNum() const {
|
| ... | ... |
@@ -2470,8 +2477,8 @@ |
| 2470 | 2477 |
|
| 2471 |
/// \brief Iterator for the keys mapped to true. |
|
| 2478 |
/// \brief Iterator for the keys mapped to \c true. |
|
| 2472 | 2479 |
/// |
| 2473 |
/// Iterator for the keys mapped to true. It works |
|
| 2474 |
/// like a graph item iterator in the map, it can be converted |
|
| 2480 |
/// Iterator for the keys mapped to \c true. It works |
|
| 2481 |
/// like a graph item iterator, it can be converted to |
|
| 2475 | 2482 |
/// the key type of the map, incremented with \c ++ operator, and |
| 2476 |
/// if the iterator |
|
| 2483 |
/// if the iterator leaves the last valid key, it will be equal to |
|
| 2477 | 2484 |
/// \c INVALID. |
| ... | ... |
@@ -2484,4 +2491,4 @@ |
| 2484 | 2491 |
/// Creates an iterator. It iterates on the |
| 2485 |
/// keys which mapped to true. |
|
| 2486 |
/// \param map The IterableIntMap |
|
| 2492 |
/// keys mapped to \c true. |
|
| 2493 |
/// \param map The IterableBoolMap. |
|
| 2487 | 2494 |
explicit TrueIt(const IterableBoolMap& map) |
| ... | ... |
@@ -2492,3 +2499,3 @@ |
| 2492 | 2499 |
/// |
| 2493 |
/// This constructor initializes the |
|
| 2500 |
/// This constructor initializes the iterator to be invalid. |
|
| 2494 | 2501 |
/// \sa Invalid for more details. |
| ... | ... |
@@ -2498,3 +2505,3 @@ |
| 2498 | 2505 |
/// |
| 2499 |
/// Increment |
|
| 2506 |
/// Increment operator. |
|
| 2500 | 2507 |
TrueIt& operator++() {
|
| ... | ... |
@@ -2505,3 +2512,2 @@ |
| 2505 | 2512 |
|
| 2506 |
|
|
| 2507 | 2513 |
private: |
| ... | ... |
@@ -2510,8 +2516,8 @@ |
| 2510 | 2516 |
|
| 2511 |
/// \brief Iterator for the keys mapped to false. |
|
| 2517 |
/// \brief Iterator for the keys mapped to \c false. |
|
| 2512 | 2518 |
/// |
| 2513 |
/// Iterator for the keys mapped to false. It works |
|
| 2514 |
/// like a graph item iterator in the map, it can be converted |
|
| 2519 |
/// Iterator for the keys mapped to \c false. It works |
|
| 2520 |
/// like a graph item iterator, it can be converted to |
|
| 2515 | 2521 |
/// the key type of the map, incremented with \c ++ operator, and |
| 2516 |
/// if the iterator |
|
| 2522 |
/// if the iterator leaves the last valid key, it will be equal to |
|
| 2517 | 2523 |
/// \c INVALID. |
| ... | ... |
@@ -2524,4 +2530,4 @@ |
| 2524 | 2530 |
/// Creates an iterator. It iterates on the |
| 2525 |
/// keys which mapped to false. |
|
| 2526 |
/// \param map The IterableIntMap |
|
| 2531 |
/// keys mapped to \c false. |
|
| 2532 |
/// \param map The IterableBoolMap. |
|
| 2527 | 2533 |
explicit FalseIt(const IterableBoolMap& map) |
| ... | ... |
@@ -2532,3 +2538,3 @@ |
| 2532 | 2538 |
/// |
| 2533 |
/// This constructor initializes the |
|
| 2539 |
/// This constructor initializes the iterator to be invalid. |
|
| 2534 | 2540 |
/// \sa Invalid for more details. |
| ... | ... |
@@ -2538,3 +2544,3 @@ |
| 2538 | 2544 |
/// |
| 2539 |
/// Increment |
|
| 2545 |
/// Increment operator. |
|
| 2540 | 2546 |
FalseIt& operator++() {
|
| ... | ... |
@@ -2552,5 +2558,5 @@ |
| 2552 | 2558 |
/// Iterator for the keys mapped to a given value. It works |
| 2553 |
/// like a graph item iterator |
|
| 2559 |
/// like a graph item iterator, it can be converted to |
|
| 2554 | 2560 |
/// the key type of the map, incremented with \c ++ operator, and |
| 2555 |
/// if the iterator |
|
| 2561 |
/// if the iterator leaves the last valid key, it will be equal to |
|
| 2556 | 2562 |
/// \c INVALID. |
| ... | ... |
@@ -2560,8 +2566,8 @@ |
| 2560 | 2566 |
|
| 2561 |
/// \brief Creates an iterator. |
|
| 2567 |
/// \brief Creates an iterator with a value. |
|
| 2562 | 2568 |
/// |
| 2563 |
/// Creates an iterator. It iterates on the |
|
| 2564 |
/// keys which mapped to false. |
|
| 2565 |
/// \param map The IterableIntMap |
|
| 2566 |
/// \param value Which elements should be iterated. |
|
| 2569 |
/// Creates an iterator with a value. It iterates on the |
|
| 2570 |
/// keys mapped to the given value. |
|
| 2571 |
/// \param map The IterableBoolMap. |
|
| 2572 |
/// \param value The value. |
|
| 2567 | 2573 |
ItemIt(const IterableBoolMap& map, bool value) |
| ... | ... |
@@ -2575,3 +2581,3 @@ |
| 2575 | 2581 |
/// |
| 2576 |
/// This constructor initializes the |
|
| 2582 |
/// This constructor initializes the iterator to be invalid. |
|
| 2577 | 2583 |
/// \sa Invalid for more details. |
| ... | ... |
@@ -2581,3 +2587,3 @@ |
| 2581 | 2587 |
/// |
| 2582 |
/// Increment |
|
| 2588 |
/// Increment operator. |
|
| 2583 | 2589 |
ItemIt& operator++() {
|
| ... | ... |
@@ -2675,26 +2681,31 @@ |
| 2675 | 2681 |
|
| 2676 |
///\ingroup graph_maps |
|
| 2677 |
/// |
|
| 2678 | 2682 |
/// \brief Dynamic iterable integer map. |
| 2679 | 2683 |
/// |
| 2680 |
/// This class provides a special graph map type which can store |
|
| 2681 |
/// for each graph item(node, edge, etc.) an integer value. For each |
|
| 2682 |
/// non negative value it is possible to iterate on the keys which |
|
| 2683 |
/// mapped to the given value. |
|
| 2684 |
/// This class provides a special graph map type which can store an |
|
| 2685 |
/// integer value for graph items (\c Node, \c Arc or \c Edge). |
|
| 2686 |
/// For each non-negative value it is possible to iterate on the keys |
|
| 2687 |
/// mapped to the value. |
|
| 2684 | 2688 |
/// |
| 2685 |
/// |
|
| 2689 |
/// This type is a reference map, so it can be modified with the |
|
| 2690 |
/// subscription operator. |
|
| 2691 |
/// |
|
| 2692 |
/// \note The size of the data structure depends on the largest |
|
| 2686 | 2693 |
/// value in the map. |
| 2687 | 2694 |
/// |
| 2688 |
/// \param GR The graph type. |
|
| 2689 |
/// \param ITEM One of the graph's item type, the key of the map. |
|
| 2690 |
|
|
| 2695 |
/// \tparam GR The graph type. |
|
| 2696 |
/// \tparam K The key type of the map (\c GR::Node, \c GR::Arc or |
|
| 2697 |
/// \c GR::Edge). |
|
| 2698 |
/// |
|
| 2699 |
/// \see IterableBoolMap, IterableValueMap |
|
| 2700 |
/// \see CrossRefMap |
|
| 2701 |
template <typename GR, typename K> |
|
| 2691 | 2702 |
class IterableIntMap |
| 2692 |
: protected ItemSetTraits<GR, ITEM>:: |
|
| 2693 |
template Map<_maps_bits::IterableIntMapNode<ITEM> >::Type {
|
|
| 2703 |
: protected ItemSetTraits<GR, K>:: |
|
| 2704 |
template Map<_maps_bits::IterableIntMapNode<K> >::Type {
|
|
| 2694 | 2705 |
public: |
| 2695 |
typedef typename ItemSetTraits<GR, ITEM>:: |
|
| 2696 |
template Map<_maps_bits::IterableIntMapNode<ITEM> >::Type Parent; |
|
| 2706 |
typedef typename ItemSetTraits<GR, K>:: |
|
| 2707 |
template Map<_maps_bits::IterableIntMapNode<K> >::Type Parent; |
|
| 2697 | 2708 |
|
| 2698 | 2709 |
/// The key type |
| 2699 |
typedef |
|
| 2710 |
typedef K Key; |
|
| 2700 | 2711 |
/// The value type |
| ... | ... |
@@ -2706,3 +2717,3 @@ |
| 2706 | 2717 |
/// |
| 2707 |
/// Constructor of the map. It |
|
| 2718 |
/// Constructor of the map. It sets all values to -1. |
|
| 2708 | 2719 |
explicit IterableIntMap(const Graph& graph) |
| ... | ... |
@@ -2714,3 +2725,3 @@ |
| 2714 | 2725 |
explicit IterableIntMap(const Graph& graph, int value) |
| 2715 |
: Parent(graph, _maps_bits::IterableIntMapNode< |
|
| 2726 |
: Parent(graph, _maps_bits::IterableIntMapNode<K>(value)) {
|
|
| 2716 | 2727 |
if (value >= 0) {
|
| ... | ... |
@@ -2756,9 +2767,9 @@ |
| 2756 | 2767 |
|
| 2757 |
/// Indicates that the map |
|
| 2768 |
/// Indicates that the map is reference map. |
|
| 2758 | 2769 |
typedef True ReferenceMapTag; |
| 2759 | 2770 |
|
| 2760 |
/// \brief |
|
| 2771 |
/// \brief Reference to the value of the map. |
|
| 2761 | 2772 |
/// |
| 2762 |
/// This class is similar to the int type. It can |
|
| 2763 |
/// be converted to int and it has the same operators. |
|
| 2773 |
/// This class is similar to the \c int type. It can |
|
| 2774 |
/// be converted to \c int and it has the same operators. |
|
| 2764 | 2775 |
class Reference {
|
| ... | ... |
@@ -2883,9 +2894,9 @@ |
| 2883 | 2894 |
/// Iterator for the keys with the same value. It works |
| 2884 |
/// like a graph item iterator |
|
| 2895 |
/// like a graph item iterator, it can be converted to |
|
| 2885 | 2896 |
/// the item type of the map, incremented with \c ++ operator, and |
| 2886 |
/// if the iterator |
|
| 2897 |
/// if the iterator leaves the last valid item, it will be equal to |
|
| 2887 | 2898 |
/// \c INVALID. |
| 2888 |
class ItemIt : public |
|
| 2899 |
class ItemIt : public Key {
|
|
| 2889 | 2900 |
public: |
| 2890 |
typedef |
|
| 2901 |
typedef Key Parent; |
|
| 2891 | 2902 |
|
| ... | ... |
@@ -2893,3 +2904,3 @@ |
| 2893 | 2904 |
/// |
| 2894 |
/// This constructor initializes the |
|
| 2905 |
/// This constructor initializes the iterator to be invalid. |
|
| 2895 | 2906 |
/// \sa Invalid for more details. |
| ... | ... |
@@ -2900,5 +2911,5 @@ |
| 2900 | 2911 |
/// Creates an iterator with a value. It iterates on the |
| 2901 |
/// keys which have the given value. |
|
| 2902 |
/// \param map The IterableIntMap |
|
| 2903 |
/// |
|
| 2912 |
/// keys mapped to the given value. |
|
| 2913 |
/// \param map The IterableIntMap. |
|
| 2914 |
/// \param value The value. |
|
| 2904 | 2915 |
ItemIt(const IterableIntMap& map, int value) : _map(&map) {
|
| ... | ... |
@@ -2913,3 +2924,3 @@ |
| 2913 | 2924 |
/// |
| 2914 |
/// Increment |
|
| 2925 |
/// Increment operator. |
|
| 2915 | 2926 |
ItemIt& operator++() {
|
| ... | ... |
@@ -2920,3 +2931,2 @@ |
| 2920 | 2931 |
|
| 2921 |
|
|
| 2922 | 2932 |
private: |
| ... | ... |
@@ -2945,3 +2955,3 @@ |
| 2945 | 2955 |
private: |
| 2946 |
std::vector< |
|
| 2956 |
std::vector<Key> _first; |
|
| 2947 | 2957 |
}; |
| ... | ... |
@@ -2957,10 +2967,10 @@ |
| 2957 | 2967 |
|
| 2958 |
///\ingroup graph_maps |
|
| 2959 |
/// |
|
| 2960 | 2968 |
/// \brief Dynamic iterable map for comparable values. |
| 2961 | 2969 |
/// |
| 2962 |
/// This class provides a special graph map type which can store |
|
| 2963 |
/// for each graph item(node, edge, etc.) a value. For each |
|
| 2964 |
/// value it is possible to iterate on the keys which mapped to the |
|
| 2965 |
/// given value. The type stores for each value a linked list with |
|
| 2970 |
/// This class provides a special graph map type which can store an |
|
| 2971 |
/// comparable value for graph items (\c Node, \c Arc or \c Edge). |
|
| 2972 |
/// For each value it is possible to iterate on the keys mapped to |
|
| 2973 |
/// the value. |
|
| 2974 |
/// |
|
| 2975 |
/// The map stores for each value a linked list with |
|
| 2966 | 2976 |
/// the items which mapped to the value, and the values are stored |
| ... | ... |
@@ -2969,22 +2979,25 @@ |
| 2969 | 2979 |
/// |
| 2970 |
/// This type is not reference map so it cannot be modified with |
|
| 2980 |
/// This type is not reference map, so it cannot be modified with |
|
| 2971 | 2981 |
/// the subscription operator. |
| 2972 | 2982 |
/// |
| 2973 |
/// \ |
|
| 2983 |
/// \tparam GR The graph type. |
|
| 2984 |
/// \tparam K The key type of the map (\c GR::Node, \c GR::Arc or |
|
| 2985 |
/// \c GR::Edge). |
|
| 2986 |
/// \tparam V The value type of the map. It can be any comparable |
|
| 2987 |
/// value type. |
|
| 2974 | 2988 |
/// |
| 2975 |
/// \param GR The graph type. |
|
| 2976 |
/// \param ITEM One of the graph's item type, the key of the map. |
|
| 2977 |
/// \param VAL Any comparable value type. |
|
| 2978 |
template <typename GR, typename ITEM, typename VAL> |
|
| 2989 |
/// \see IterableBoolMap, IterableIntMap |
|
| 2990 |
/// \see CrossRefMap |
|
| 2991 |
template <typename GR, typename K, typename V> |
|
| 2979 | 2992 |
class IterableValueMap |
| 2980 |
: protected ItemSetTraits<GR, ITEM>:: |
|
| 2981 |
template Map<_maps_bits::IterableValueMapNode<ITEM, VAL> >::Type {
|
|
| 2993 |
: protected ItemSetTraits<GR, K>:: |
|
| 2994 |
template Map<_maps_bits::IterableValueMapNode<K, V> >::Type {
|
|
| 2982 | 2995 |
public: |
| 2983 |
typedef typename ItemSetTraits<GR, ITEM>:: |
|
| 2984 |
template Map<_maps_bits::IterableValueMapNode<ITEM, VAL> >::Type Parent; |
|
| 2996 |
typedef typename ItemSetTraits<GR, K>:: |
|
| 2997 |
template Map<_maps_bits::IterableValueMapNode<K, V> >::Type Parent; |
|
| 2985 | 2998 |
|
| 2986 | 2999 |
/// The key type |
| 2987 |
typedef |
|
| 3000 |
typedef K Key; |
|
| 2988 | 3001 |
/// The value type |
| 2989 |
typedef |
|
| 3002 |
typedef V Value; |
|
| 2990 | 3003 |
/// The graph type |
| ... | ... |
@@ -2994,8 +3007,8 @@ |
| 2994 | 3007 |
|
| 2995 |
/// \brief Constructor of the |
|
| 3008 |
/// \brief Constructor of the map with a given value. |
|
| 2996 | 3009 |
/// |
| 2997 |
/// Constructor of the |
|
| 3010 |
/// Constructor of the map with a given value. |
|
| 2998 | 3011 |
explicit IterableValueMap(const Graph& graph, |
| 2999 | 3012 |
const Value& value = Value()) |
| 3000 |
: Parent(graph, _maps_bits::IterableValueMapNode< |
|
| 3013 |
: Parent(graph, _maps_bits::IterableValueMapNode<K, V>(value)) {
|
|
| 3001 | 3014 |
for (typename Parent::ItemIt it(*this); it != INVALID; ++it) {
|
| ... | ... |
@@ -3028,5 +3041,2 @@ |
| 3028 | 3041 |
node.prev = node.next = INVALID; |
| 3029 |
if (node.next != INVALID) {
|
|
| 3030 |
Parent::operator[](node.next).prev = key; |
|
| 3031 |
} |
|
| 3032 | 3042 |
_first.insert(std::make_pair(node.value, key)); |
| ... | ... |
@@ -3048,4 +3058,3 @@ |
| 3048 | 3058 |
/// iterator on the values of the map. The values can |
| 3049 |
/// be accessed in the [beginValue, endValue) range. |
|
| 3050 |
/// |
|
| 3059 |
/// be accessed in the <tt>[beginValue, endValue)</tt> range. |
|
| 3051 | 3060 |
class ValueIterator |
| ... | ... |
@@ -3081,3 +3090,3 @@ |
| 3081 | 3090 |
/// first value of the map. The values of the |
| 3082 |
/// map can be accessed in the [beginValue, endValue) |
|
| 3091 |
/// map can be accessed in the <tt>[beginValue, endValue)</tt> |
|
| 3083 | 3092 |
/// range. |
| ... | ... |
@@ -3091,3 +3100,3 @@ |
| 3091 | 3100 |
/// last value of the map. The values of the |
| 3092 |
/// map can be accessed in the [beginValue, endValue) |
|
| 3101 |
/// map can be accessed in the <tt>[beginValue, endValue)</tt> |
|
| 3093 | 3102 |
/// range. |
| ... | ... |
@@ -3116,9 +3125,9 @@ |
| 3116 | 3125 |
/// Iterator for the keys with the same value. It works |
| 3117 |
/// like a graph item iterator |
|
| 3126 |
/// like a graph item iterator, it can be converted to |
|
| 3118 | 3127 |
/// the item type of the map, incremented with \c ++ operator, and |
| 3119 |
/// if the iterator |
|
| 3128 |
/// if the iterator leaves the last valid item, it will be equal to |
|
| 3120 | 3129 |
/// \c INVALID. |
| 3121 |
class ItemIt : public |
|
| 3130 |
class ItemIt : public Key {
|
|
| 3122 | 3131 |
public: |
| 3123 |
typedef |
|
| 3132 |
typedef Key Parent; |
|
| 3124 | 3133 |
|
| ... | ... |
@@ -3126,3 +3135,3 @@ |
| 3126 | 3135 |
/// |
| 3127 |
/// This constructor initializes the |
|
| 3136 |
/// This constructor initializes the iterator to be invalid. |
|
| 3128 | 3137 |
/// \sa Invalid for more details. |
| ... | ... |
@@ -24,2 +24,3 @@ |
| 24 | 24 |
#include <lemon/maps.h> |
| 25 |
#include <lemon/smart_graph.h> |
|
| 25 | 26 |
|
| ... | ... |
@@ -357,3 +358,3 @@ |
| 357 | 358 |
typedef IterableBoolMap<SmartGraph, SmartGraph::Node> Ibm; |
| 358 |
checkConcept< |
|
| 359 |
checkConcept<ReferenceMap<Item, bool, bool&, const bool&>, Ibm>(); |
|
| 359 | 360 |
|
| ... | ... |
@@ -438,3 +439,3 @@ |
| 438 | 439 |
|
| 439 |
checkConcept< |
|
| 440 |
checkConcept<ReferenceMap<Item, int, int&, const int&>, Iim>(); |
|
| 440 | 441 |
|
| ... | ... |
@@ -469,3 +470,3 @@ |
| 469 | 470 |
for (Iim::ItemIt it(map1, 0); it != INVALID; ++it) {
|
| 470 |
check(map1[static_cast<Item>(it)] == 0, "Wrong |
|
| 471 |
check(map1[static_cast<Item>(it)] == 0, "Wrong value"); |
|
| 471 | 472 |
++n; |
| ... | ... |
@@ -475,3 +476,3 @@ |
| 475 | 476 |
for (Iim::ItemIt it(map1, 1); it != INVALID; ++it) {
|
| 476 |
check(map1[static_cast<Item>(it)] == 1, "Wrong |
|
| 477 |
check(map1[static_cast<Item>(it)] == 1, "Wrong value"); |
|
| 477 | 478 |
++n; |
| ... | ... |
@@ -526,3 +527,3 @@ |
| 526 | 527 |
for (Ivm::ItemIt it(map1, 0.0); it != INVALID; ++it) {
|
| 527 |
check(map1[static_cast<Item>(it)] == 0.0, "Wrong |
|
| 528 |
check(map1[static_cast<Item>(it)] == 0.0, "Wrong value"); |
|
| 528 | 529 |
++n; |
| ... | ... |
@@ -532,3 +533,3 @@ |
| 532 | 533 |
for (Ivm::ItemIt it(map1, 1.0); it != INVALID; ++it) {
|
| 533 |
check(map1[static_cast<Item>(it)] == 1.0, "Wrong |
|
| 534 |
check(map1[static_cast<Item>(it)] == 1.0, "Wrong value"); |
|
| 534 | 535 |
++n; |
0 comments (0 inline)