... | ... |
@@ -2743,1025 +2743,1025 @@ |
2743 | 2743 |
IterableIntMapNode(int _value) : value(_value) {} |
2744 | 2744 |
Item prev, next; |
2745 | 2745 |
int value; |
2746 | 2746 |
}; |
2747 | 2747 |
} |
2748 | 2748 |
|
2749 | 2749 |
/// \brief Dynamic iterable integer map. |
2750 | 2750 |
/// |
2751 | 2751 |
/// This class provides a special graph map type which can store an |
2752 | 2752 |
/// integer value for graph items (\c Node, \c Arc or \c Edge). |
2753 | 2753 |
/// For each non-negative value it is possible to iterate on the keys |
2754 | 2754 |
/// mapped to the value. |
2755 | 2755 |
/// |
2756 | 2756 |
/// This map is intended to be used with small integer values, for which |
2757 | 2757 |
/// it is efficient, and supports iteration only for non-negative values. |
2758 | 2758 |
/// If you need large values and/or iteration for negative integers, |
2759 | 2759 |
/// consider to use \ref IterableValueMap instead. |
2760 | 2760 |
/// |
2761 | 2761 |
/// This type is a reference map, so it can be modified with the |
2762 | 2762 |
/// subscript operator. |
2763 | 2763 |
/// |
2764 | 2764 |
/// \note The size of the data structure depends on the largest |
2765 | 2765 |
/// value in the map. |
2766 | 2766 |
/// |
2767 | 2767 |
/// \tparam GR The graph type. |
2768 | 2768 |
/// \tparam K The key type of the map (\c GR::Node, \c GR::Arc or |
2769 | 2769 |
/// \c GR::Edge). |
2770 | 2770 |
/// |
2771 | 2771 |
/// \see IterableBoolMap, IterableValueMap |
2772 | 2772 |
/// \see CrossRefMap |
2773 | 2773 |
template <typename GR, typename K> |
2774 | 2774 |
class IterableIntMap |
2775 | 2775 |
: protected ItemSetTraits<GR, K>:: |
2776 | 2776 |
template Map<_maps_bits::IterableIntMapNode<K> >::Type { |
2777 | 2777 |
public: |
2778 | 2778 |
typedef typename ItemSetTraits<GR, K>:: |
2779 | 2779 |
template Map<_maps_bits::IterableIntMapNode<K> >::Type Parent; |
2780 | 2780 |
|
2781 | 2781 |
/// The key type |
2782 | 2782 |
typedef K Key; |
2783 | 2783 |
/// The value type |
2784 | 2784 |
typedef int Value; |
2785 | 2785 |
/// The graph type |
2786 | 2786 |
typedef GR Graph; |
2787 | 2787 |
|
2788 | 2788 |
/// \brief Constructor of the map. |
2789 | 2789 |
/// |
2790 | 2790 |
/// Constructor of the map. It sets all values to -1. |
2791 | 2791 |
explicit IterableIntMap(const Graph& graph) |
2792 | 2792 |
: Parent(graph) {} |
2793 | 2793 |
|
2794 | 2794 |
/// \brief Constructor of the map with a given value. |
2795 | 2795 |
/// |
2796 | 2796 |
/// Constructor of the map with a given value. |
2797 | 2797 |
explicit IterableIntMap(const Graph& graph, int value) |
2798 | 2798 |
: Parent(graph, _maps_bits::IterableIntMapNode<K>(value)) { |
2799 | 2799 |
if (value >= 0) { |
2800 | 2800 |
for (typename Parent::ItemIt it(*this); it != INVALID; ++it) { |
2801 | 2801 |
lace(it); |
2802 | 2802 |
} |
2803 | 2803 |
} |
2804 | 2804 |
} |
2805 | 2805 |
|
2806 | 2806 |
private: |
2807 | 2807 |
|
2808 | 2808 |
void unlace(const Key& key) { |
2809 | 2809 |
typename Parent::Value& node = Parent::operator[](key); |
2810 | 2810 |
if (node.value < 0) return; |
2811 | 2811 |
if (node.prev != INVALID) { |
2812 | 2812 |
Parent::operator[](node.prev).next = node.next; |
2813 | 2813 |
} else { |
2814 | 2814 |
_first[node.value] = node.next; |
2815 | 2815 |
} |
2816 | 2816 |
if (node.next != INVALID) { |
2817 | 2817 |
Parent::operator[](node.next).prev = node.prev; |
2818 | 2818 |
} |
2819 | 2819 |
while (!_first.empty() && _first.back() == INVALID) { |
2820 | 2820 |
_first.pop_back(); |
2821 | 2821 |
} |
2822 | 2822 |
} |
2823 | 2823 |
|
2824 | 2824 |
void lace(const Key& key) { |
2825 | 2825 |
typename Parent::Value& node = Parent::operator[](key); |
2826 | 2826 |
if (node.value < 0) return; |
2827 | 2827 |
if (node.value >= int(_first.size())) { |
2828 | 2828 |
_first.resize(node.value + 1, INVALID); |
2829 | 2829 |
} |
2830 | 2830 |
node.prev = INVALID; |
2831 | 2831 |
node.next = _first[node.value]; |
2832 | 2832 |
if (node.next != INVALID) { |
2833 | 2833 |
Parent::operator[](node.next).prev = key; |
2834 | 2834 |
} |
2835 | 2835 |
_first[node.value] = key; |
2836 | 2836 |
} |
2837 | 2837 |
|
2838 | 2838 |
public: |
2839 | 2839 |
|
2840 | 2840 |
/// Indicates that the map is reference map. |
2841 | 2841 |
typedef True ReferenceMapTag; |
2842 | 2842 |
|
2843 | 2843 |
/// \brief Reference to the value of the map. |
2844 | 2844 |
/// |
2845 | 2845 |
/// This class is similar to the \c int type. It can |
2846 | 2846 |
/// be converted to \c int and it has the same operators. |
2847 | 2847 |
class Reference { |
2848 | 2848 |
friend class IterableIntMap; |
2849 | 2849 |
private: |
2850 | 2850 |
Reference(IterableIntMap& map, const Key& key) |
2851 | 2851 |
: _key(key), _map(map) {} |
2852 | 2852 |
public: |
2853 | 2853 |
|
2854 | 2854 |
Reference& operator=(const Reference& value) { |
2855 | 2855 |
_map.set(_key, static_cast<const int&>(value)); |
2856 | 2856 |
return *this; |
2857 | 2857 |
} |
2858 | 2858 |
|
2859 | 2859 |
operator const int&() const { |
2860 | 2860 |
return static_cast<const IterableIntMap&>(_map)[_key]; |
2861 | 2861 |
} |
2862 | 2862 |
|
2863 | 2863 |
Reference& operator=(int value) { |
2864 | 2864 |
_map.set(_key, value); |
2865 | 2865 |
return *this; |
2866 | 2866 |
} |
2867 | 2867 |
Reference& operator++() { |
2868 | 2868 |
_map.set(_key, _map[_key] + 1); |
2869 | 2869 |
return *this; |
2870 | 2870 |
} |
2871 | 2871 |
int operator++(int) { |
2872 | 2872 |
int value = _map[_key]; |
2873 | 2873 |
_map.set(_key, value + 1); |
2874 | 2874 |
return value; |
2875 | 2875 |
} |
2876 | 2876 |
Reference& operator--() { |
2877 | 2877 |
_map.set(_key, _map[_key] - 1); |
2878 | 2878 |
return *this; |
2879 | 2879 |
} |
2880 | 2880 |
int operator--(int) { |
2881 | 2881 |
int value = _map[_key]; |
2882 | 2882 |
_map.set(_key, value - 1); |
2883 | 2883 |
return value; |
2884 | 2884 |
} |
2885 | 2885 |
Reference& operator+=(int value) { |
2886 | 2886 |
_map.set(_key, _map[_key] + value); |
2887 | 2887 |
return *this; |
2888 | 2888 |
} |
2889 | 2889 |
Reference& operator-=(int value) { |
2890 | 2890 |
_map.set(_key, _map[_key] - value); |
2891 | 2891 |
return *this; |
2892 | 2892 |
} |
2893 | 2893 |
Reference& operator*=(int value) { |
2894 | 2894 |
_map.set(_key, _map[_key] * value); |
2895 | 2895 |
return *this; |
2896 | 2896 |
} |
2897 | 2897 |
Reference& operator/=(int value) { |
2898 | 2898 |
_map.set(_key, _map[_key] / value); |
2899 | 2899 |
return *this; |
2900 | 2900 |
} |
2901 | 2901 |
Reference& operator%=(int value) { |
2902 | 2902 |
_map.set(_key, _map[_key] % value); |
2903 | 2903 |
return *this; |
2904 | 2904 |
} |
2905 | 2905 |
Reference& operator&=(int value) { |
2906 | 2906 |
_map.set(_key, _map[_key] & value); |
2907 | 2907 |
return *this; |
2908 | 2908 |
} |
2909 | 2909 |
Reference& operator|=(int value) { |
2910 | 2910 |
_map.set(_key, _map[_key] | value); |
2911 | 2911 |
return *this; |
2912 | 2912 |
} |
2913 | 2913 |
Reference& operator^=(int value) { |
2914 | 2914 |
_map.set(_key, _map[_key] ^ value); |
2915 | 2915 |
return *this; |
2916 | 2916 |
} |
2917 | 2917 |
Reference& operator<<=(int value) { |
2918 | 2918 |
_map.set(_key, _map[_key] << value); |
2919 | 2919 |
return *this; |
2920 | 2920 |
} |
2921 | 2921 |
Reference& operator>>=(int value) { |
2922 | 2922 |
_map.set(_key, _map[_key] >> value); |
2923 | 2923 |
return *this; |
2924 | 2924 |
} |
2925 | 2925 |
|
2926 | 2926 |
private: |
2927 | 2927 |
Key _key; |
2928 | 2928 |
IterableIntMap& _map; |
2929 | 2929 |
}; |
2930 | 2930 |
|
2931 | 2931 |
/// The const reference type. |
2932 | 2932 |
typedef const Value& ConstReference; |
2933 | 2933 |
|
2934 | 2934 |
/// \brief Gives back the maximal value plus one. |
2935 | 2935 |
/// |
2936 | 2936 |
/// Gives back the maximal value plus one. |
2937 | 2937 |
int size() const { |
2938 | 2938 |
return _first.size(); |
2939 | 2939 |
} |
2940 | 2940 |
|
2941 | 2941 |
/// \brief Set operation of the map. |
2942 | 2942 |
/// |
2943 | 2943 |
/// Set operation of the map. |
2944 | 2944 |
void set(const Key& key, const Value& value) { |
2945 | 2945 |
unlace(key); |
2946 | 2946 |
Parent::operator[](key).value = value; |
2947 | 2947 |
lace(key); |
2948 | 2948 |
} |
2949 | 2949 |
|
2950 | 2950 |
/// \brief Const subscript operator of the map. |
2951 | 2951 |
/// |
2952 | 2952 |
/// Const subscript operator of the map. |
2953 | 2953 |
const Value& operator[](const Key& key) const { |
2954 | 2954 |
return Parent::operator[](key).value; |
2955 | 2955 |
} |
2956 | 2956 |
|
2957 | 2957 |
/// \brief Subscript operator of the map. |
2958 | 2958 |
/// |
2959 | 2959 |
/// Subscript operator of the map. |
2960 | 2960 |
Reference operator[](const Key& key) { |
2961 | 2961 |
return Reference(*this, key); |
2962 | 2962 |
} |
2963 | 2963 |
|
2964 | 2964 |
/// \brief Iterator for the keys with the same value. |
2965 | 2965 |
/// |
2966 | 2966 |
/// Iterator for the keys with the same value. It works |
2967 | 2967 |
/// like a graph item iterator, it can be converted to |
2968 | 2968 |
/// the item type of the map, incremented with \c ++ operator, and |
2969 | 2969 |
/// if the iterator leaves the last valid item, it will be equal to |
2970 | 2970 |
/// \c INVALID. |
2971 | 2971 |
class ItemIt : public Key { |
2972 | 2972 |
public: |
2973 | 2973 |
typedef Key Parent; |
2974 | 2974 |
|
2975 | 2975 |
/// \brief Invalid constructor \& conversion. |
2976 | 2976 |
/// |
2977 | 2977 |
/// This constructor initializes the iterator to be invalid. |
2978 | 2978 |
/// \sa Invalid for more details. |
2979 | 2979 |
ItemIt(Invalid) : Parent(INVALID), _map(0) {} |
2980 | 2980 |
|
2981 | 2981 |
/// \brief Creates an iterator with a value. |
2982 | 2982 |
/// |
2983 | 2983 |
/// Creates an iterator with a value. It iterates on the |
2984 | 2984 |
/// keys mapped to the given value. |
2985 | 2985 |
/// \param map The IterableIntMap. |
2986 | 2986 |
/// \param value The value. |
2987 | 2987 |
ItemIt(const IterableIntMap& map, int value) : _map(&map) { |
2988 | 2988 |
if (value < 0 || value >= int(_map->_first.size())) { |
2989 | 2989 |
Parent::operator=(INVALID); |
2990 | 2990 |
} else { |
2991 | 2991 |
Parent::operator=(_map->_first[value]); |
2992 | 2992 |
} |
2993 | 2993 |
} |
2994 | 2994 |
|
2995 | 2995 |
/// \brief Increment operator. |
2996 | 2996 |
/// |
2997 | 2997 |
/// Increment operator. |
2998 | 2998 |
ItemIt& operator++() { |
2999 | 2999 |
Parent::operator=(_map->IterableIntMap::Parent:: |
3000 | 3000 |
operator[](static_cast<Parent&>(*this)).next); |
3001 | 3001 |
return *this; |
3002 | 3002 |
} |
3003 | 3003 |
|
3004 | 3004 |
private: |
3005 | 3005 |
const IterableIntMap* _map; |
3006 | 3006 |
}; |
3007 | 3007 |
|
3008 | 3008 |
protected: |
3009 | 3009 |
|
3010 | 3010 |
virtual void erase(const Key& key) { |
3011 | 3011 |
unlace(key); |
3012 | 3012 |
Parent::erase(key); |
3013 | 3013 |
} |
3014 | 3014 |
|
3015 | 3015 |
virtual void erase(const std::vector<Key>& keys) { |
3016 | 3016 |
for (int i = 0; i < int(keys.size()); ++i) { |
3017 | 3017 |
unlace(keys[i]); |
3018 | 3018 |
} |
3019 | 3019 |
Parent::erase(keys); |
3020 | 3020 |
} |
3021 | 3021 |
|
3022 | 3022 |
virtual void clear() { |
3023 | 3023 |
_first.clear(); |
3024 | 3024 |
Parent::clear(); |
3025 | 3025 |
} |
3026 | 3026 |
|
3027 | 3027 |
private: |
3028 | 3028 |
std::vector<Key> _first; |
3029 | 3029 |
}; |
3030 | 3030 |
|
3031 | 3031 |
namespace _maps_bits { |
3032 | 3032 |
template <typename Item, typename Value> |
3033 | 3033 |
struct IterableValueMapNode { |
3034 | 3034 |
IterableValueMapNode(Value _value = Value()) : value(_value) {} |
3035 | 3035 |
Item prev, next; |
3036 | 3036 |
Value value; |
3037 | 3037 |
}; |
3038 | 3038 |
} |
3039 | 3039 |
|
3040 | 3040 |
/// \brief Dynamic iterable map for comparable values. |
3041 | 3041 |
/// |
3042 | 3042 |
/// This class provides a special graph map type which can store a |
3043 | 3043 |
/// comparable value for graph items (\c Node, \c Arc or \c Edge). |
3044 | 3044 |
/// For each value it is possible to iterate on the keys mapped to |
3045 | 3045 |
/// the value (\c ItemIt), and the values of the map can be accessed |
3046 | 3046 |
/// with an STL compatible forward iterator (\c ValueIt). |
3047 | 3047 |
/// The map stores a linked list for each value, which contains |
3048 | 3048 |
/// the items mapped to the value, and the used values are stored |
3049 | 3049 |
/// in balanced binary tree (\c std::map). |
3050 | 3050 |
/// |
3051 | 3051 |
/// \ref IterableBoolMap and \ref IterableIntMap are similar classes |
3052 | 3052 |
/// specialized for \c bool and \c int values, respectively. |
3053 | 3053 |
/// |
3054 | 3054 |
/// This type is not reference map, so it cannot be modified with |
3055 | 3055 |
/// the subscript operator. |
3056 | 3056 |
/// |
3057 | 3057 |
/// \tparam GR The graph type. |
3058 | 3058 |
/// \tparam K The key type of the map (\c GR::Node, \c GR::Arc or |
3059 | 3059 |
/// \c GR::Edge). |
3060 | 3060 |
/// \tparam V The value type of the map. It can be any comparable |
3061 | 3061 |
/// value type. |
3062 | 3062 |
/// |
3063 | 3063 |
/// \see IterableBoolMap, IterableIntMap |
3064 | 3064 |
/// \see CrossRefMap |
3065 | 3065 |
template <typename GR, typename K, typename V> |
3066 | 3066 |
class IterableValueMap |
3067 | 3067 |
: protected ItemSetTraits<GR, K>:: |
3068 | 3068 |
template Map<_maps_bits::IterableValueMapNode<K, V> >::Type { |
3069 | 3069 |
public: |
3070 | 3070 |
typedef typename ItemSetTraits<GR, K>:: |
3071 | 3071 |
template Map<_maps_bits::IterableValueMapNode<K, V> >::Type Parent; |
3072 | 3072 |
|
3073 | 3073 |
/// The key type |
3074 | 3074 |
typedef K Key; |
3075 | 3075 |
/// The value type |
3076 | 3076 |
typedef V Value; |
3077 | 3077 |
/// The graph type |
3078 | 3078 |
typedef GR Graph; |
3079 | 3079 |
|
3080 | 3080 |
public: |
3081 | 3081 |
|
3082 | 3082 |
/// \brief Constructor of the map with a given value. |
3083 | 3083 |
/// |
3084 | 3084 |
/// Constructor of the map with a given value. |
3085 | 3085 |
explicit IterableValueMap(const Graph& graph, |
3086 | 3086 |
const Value& value = Value()) |
3087 | 3087 |
: Parent(graph, _maps_bits::IterableValueMapNode<K, V>(value)) { |
3088 | 3088 |
for (typename Parent::ItemIt it(*this); it != INVALID; ++it) { |
3089 | 3089 |
lace(it); |
3090 | 3090 |
} |
3091 | 3091 |
} |
3092 | 3092 |
|
3093 | 3093 |
protected: |
3094 | 3094 |
|
3095 | 3095 |
void unlace(const Key& key) { |
3096 | 3096 |
typename Parent::Value& node = Parent::operator[](key); |
3097 | 3097 |
if (node.prev != INVALID) { |
3098 | 3098 |
Parent::operator[](node.prev).next = node.next; |
3099 | 3099 |
} else { |
3100 | 3100 |
if (node.next != INVALID) { |
3101 | 3101 |
_first[node.value] = node.next; |
3102 | 3102 |
} else { |
3103 | 3103 |
_first.erase(node.value); |
3104 | 3104 |
} |
3105 | 3105 |
} |
3106 | 3106 |
if (node.next != INVALID) { |
3107 | 3107 |
Parent::operator[](node.next).prev = node.prev; |
3108 | 3108 |
} |
3109 | 3109 |
} |
3110 | 3110 |
|
3111 | 3111 |
void lace(const Key& key) { |
3112 | 3112 |
typename Parent::Value& node = Parent::operator[](key); |
3113 | 3113 |
typename std::map<Value, Key>::iterator it = _first.find(node.value); |
3114 | 3114 |
if (it == _first.end()) { |
3115 | 3115 |
node.prev = node.next = INVALID; |
3116 | 3116 |
_first.insert(std::make_pair(node.value, key)); |
3117 | 3117 |
} else { |
3118 | 3118 |
node.prev = INVALID; |
3119 | 3119 |
node.next = it->second; |
3120 | 3120 |
if (node.next != INVALID) { |
3121 | 3121 |
Parent::operator[](node.next).prev = key; |
3122 | 3122 |
} |
3123 | 3123 |
it->second = key; |
3124 | 3124 |
} |
3125 | 3125 |
} |
3126 | 3126 |
|
3127 | 3127 |
public: |
3128 | 3128 |
|
3129 | 3129 |
/// \brief Forward iterator for values. |
3130 | 3130 |
/// |
3131 | 3131 |
/// This iterator is an STL compatible forward |
3132 | 3132 |
/// iterator on the values of the map. The values can |
3133 | 3133 |
/// be accessed in the <tt>[beginValue, endValue)</tt> range. |
3134 | 3134 |
class ValueIt |
3135 | 3135 |
: public std::iterator<std::forward_iterator_tag, Value> { |
3136 | 3136 |
friend class IterableValueMap; |
3137 | 3137 |
private: |
3138 | 3138 |
ValueIt(typename std::map<Value, Key>::const_iterator _it) |
3139 | 3139 |
: it(_it) {} |
3140 | 3140 |
public: |
3141 | 3141 |
|
3142 | 3142 |
/// Constructor |
3143 | 3143 |
ValueIt() {} |
3144 | 3144 |
|
3145 | 3145 |
/// \e |
3146 | 3146 |
ValueIt& operator++() { ++it; return *this; } |
3147 | 3147 |
/// \e |
3148 | 3148 |
ValueIt operator++(int) { |
3149 | 3149 |
ValueIt tmp(*this); |
3150 | 3150 |
operator++(); |
3151 | 3151 |
return tmp; |
3152 | 3152 |
} |
3153 | 3153 |
|
3154 | 3154 |
/// \e |
3155 | 3155 |
const Value& operator*() const { return it->first; } |
3156 | 3156 |
/// \e |
3157 | 3157 |
const Value* operator->() const { return &(it->first); } |
3158 | 3158 |
|
3159 | 3159 |
/// \e |
3160 | 3160 |
bool operator==(ValueIt jt) const { return it == jt.it; } |
3161 | 3161 |
/// \e |
3162 | 3162 |
bool operator!=(ValueIt jt) const { return it != jt.it; } |
3163 | 3163 |
|
3164 | 3164 |
private: |
3165 | 3165 |
typename std::map<Value, Key>::const_iterator it; |
3166 | 3166 |
}; |
3167 | 3167 |
|
3168 | 3168 |
/// \brief Returns an iterator to the first value. |
3169 | 3169 |
/// |
3170 | 3170 |
/// Returns an STL compatible iterator to the |
3171 | 3171 |
/// first value of the map. The values of the |
3172 | 3172 |
/// map can be accessed in the <tt>[beginValue, endValue)</tt> |
3173 | 3173 |
/// range. |
3174 | 3174 |
ValueIt beginValue() const { |
3175 | 3175 |
return ValueIt(_first.begin()); |
3176 | 3176 |
} |
3177 | 3177 |
|
3178 | 3178 |
/// \brief Returns an iterator after the last value. |
3179 | 3179 |
/// |
3180 | 3180 |
/// Returns an STL compatible iterator after the |
3181 | 3181 |
/// last value of the map. The values of the |
3182 | 3182 |
/// map can be accessed in the <tt>[beginValue, endValue)</tt> |
3183 | 3183 |
/// range. |
3184 | 3184 |
ValueIt endValue() const { |
3185 | 3185 |
return ValueIt(_first.end()); |
3186 | 3186 |
} |
3187 | 3187 |
|
3188 | 3188 |
/// \brief Set operation of the map. |
3189 | 3189 |
/// |
3190 | 3190 |
/// Set operation of the map. |
3191 | 3191 |
void set(const Key& key, const Value& value) { |
3192 | 3192 |
unlace(key); |
3193 | 3193 |
Parent::operator[](key).value = value; |
3194 | 3194 |
lace(key); |
3195 | 3195 |
} |
3196 | 3196 |
|
3197 | 3197 |
/// \brief Const subscript operator of the map. |
3198 | 3198 |
/// |
3199 | 3199 |
/// Const subscript operator of the map. |
3200 | 3200 |
const Value& operator[](const Key& key) const { |
3201 | 3201 |
return Parent::operator[](key).value; |
3202 | 3202 |
} |
3203 | 3203 |
|
3204 | 3204 |
/// \brief Iterator for the keys with the same value. |
3205 | 3205 |
/// |
3206 | 3206 |
/// Iterator for the keys with the same value. It works |
3207 | 3207 |
/// like a graph item iterator, it can be converted to |
3208 | 3208 |
/// the item type of the map, incremented with \c ++ operator, and |
3209 | 3209 |
/// if the iterator leaves the last valid item, it will be equal to |
3210 | 3210 |
/// \c INVALID. |
3211 | 3211 |
class ItemIt : public Key { |
3212 | 3212 |
public: |
3213 | 3213 |
typedef Key Parent; |
3214 | 3214 |
|
3215 | 3215 |
/// \brief Invalid constructor \& conversion. |
3216 | 3216 |
/// |
3217 | 3217 |
/// This constructor initializes the iterator to be invalid. |
3218 | 3218 |
/// \sa Invalid for more details. |
3219 | 3219 |
ItemIt(Invalid) : Parent(INVALID), _map(0) {} |
3220 | 3220 |
|
3221 | 3221 |
/// \brief Creates an iterator with a value. |
3222 | 3222 |
/// |
3223 | 3223 |
/// Creates an iterator with a value. It iterates on the |
3224 | 3224 |
/// keys which have the given value. |
3225 | 3225 |
/// \param map The IterableValueMap |
3226 | 3226 |
/// \param value The value |
3227 | 3227 |
ItemIt(const IterableValueMap& map, const Value& value) : _map(&map) { |
3228 | 3228 |
typename std::map<Value, Key>::const_iterator it = |
3229 | 3229 |
map._first.find(value); |
3230 | 3230 |
if (it == map._first.end()) { |
3231 | 3231 |
Parent::operator=(INVALID); |
3232 | 3232 |
} else { |
3233 | 3233 |
Parent::operator=(it->second); |
3234 | 3234 |
} |
3235 | 3235 |
} |
3236 | 3236 |
|
3237 | 3237 |
/// \brief Increment operator. |
3238 | 3238 |
/// |
3239 | 3239 |
/// Increment Operator. |
3240 | 3240 |
ItemIt& operator++() { |
3241 | 3241 |
Parent::operator=(_map->IterableValueMap::Parent:: |
3242 | 3242 |
operator[](static_cast<Parent&>(*this)).next); |
3243 | 3243 |
return *this; |
3244 | 3244 |
} |
3245 | 3245 |
|
3246 | 3246 |
|
3247 | 3247 |
private: |
3248 | 3248 |
const IterableValueMap* _map; |
3249 | 3249 |
}; |
3250 | 3250 |
|
3251 | 3251 |
protected: |
3252 | 3252 |
|
3253 | 3253 |
virtual void add(const Key& key) { |
3254 | 3254 |
Parent::add(key); |
3255 |
|
|
3255 |
lace(key); |
|
3256 | 3256 |
} |
3257 | 3257 |
|
3258 | 3258 |
virtual void add(const std::vector<Key>& keys) { |
3259 | 3259 |
Parent::add(keys); |
3260 | 3260 |
for (int i = 0; i < int(keys.size()); ++i) { |
3261 | 3261 |
lace(keys[i]); |
3262 | 3262 |
} |
3263 | 3263 |
} |
3264 | 3264 |
|
3265 | 3265 |
virtual void erase(const Key& key) { |
3266 | 3266 |
unlace(key); |
3267 | 3267 |
Parent::erase(key); |
3268 | 3268 |
} |
3269 | 3269 |
|
3270 | 3270 |
virtual void erase(const std::vector<Key>& keys) { |
3271 | 3271 |
for (int i = 0; i < int(keys.size()); ++i) { |
3272 | 3272 |
unlace(keys[i]); |
3273 | 3273 |
} |
3274 | 3274 |
Parent::erase(keys); |
3275 | 3275 |
} |
3276 | 3276 |
|
3277 | 3277 |
virtual void build() { |
3278 | 3278 |
Parent::build(); |
3279 | 3279 |
for (typename Parent::ItemIt it(*this); it != INVALID; ++it) { |
3280 | 3280 |
lace(it); |
3281 | 3281 |
} |
3282 | 3282 |
} |
3283 | 3283 |
|
3284 | 3284 |
virtual void clear() { |
3285 | 3285 |
_first.clear(); |
3286 | 3286 |
Parent::clear(); |
3287 | 3287 |
} |
3288 | 3288 |
|
3289 | 3289 |
private: |
3290 | 3290 |
std::map<Value, Key> _first; |
3291 | 3291 |
}; |
3292 | 3292 |
|
3293 | 3293 |
/// \brief Map of the source nodes of arcs in a digraph. |
3294 | 3294 |
/// |
3295 | 3295 |
/// SourceMap provides access for the source node of each arc in a digraph, |
3296 | 3296 |
/// which is returned by the \c source() function of the digraph. |
3297 | 3297 |
/// \tparam GR The digraph type. |
3298 | 3298 |
/// \see TargetMap |
3299 | 3299 |
template <typename GR> |
3300 | 3300 |
class SourceMap { |
3301 | 3301 |
public: |
3302 | 3302 |
|
3303 | 3303 |
/// The key type (the \c Arc type of the digraph). |
3304 | 3304 |
typedef typename GR::Arc Key; |
3305 | 3305 |
/// The value type (the \c Node type of the digraph). |
3306 | 3306 |
typedef typename GR::Node Value; |
3307 | 3307 |
|
3308 | 3308 |
/// \brief Constructor |
3309 | 3309 |
/// |
3310 | 3310 |
/// Constructor. |
3311 | 3311 |
/// \param digraph The digraph that the map belongs to. |
3312 | 3312 |
explicit SourceMap(const GR& digraph) : _graph(digraph) {} |
3313 | 3313 |
|
3314 | 3314 |
/// \brief Returns the source node of the given arc. |
3315 | 3315 |
/// |
3316 | 3316 |
/// Returns the source node of the given arc. |
3317 | 3317 |
Value operator[](const Key& arc) const { |
3318 | 3318 |
return _graph.source(arc); |
3319 | 3319 |
} |
3320 | 3320 |
|
3321 | 3321 |
private: |
3322 | 3322 |
const GR& _graph; |
3323 | 3323 |
}; |
3324 | 3324 |
|
3325 | 3325 |
/// \brief Returns a \c SourceMap class. |
3326 | 3326 |
/// |
3327 | 3327 |
/// This function just returns an \c SourceMap class. |
3328 | 3328 |
/// \relates SourceMap |
3329 | 3329 |
template <typename GR> |
3330 | 3330 |
inline SourceMap<GR> sourceMap(const GR& graph) { |
3331 | 3331 |
return SourceMap<GR>(graph); |
3332 | 3332 |
} |
3333 | 3333 |
|
3334 | 3334 |
/// \brief Map of the target nodes of arcs in a digraph. |
3335 | 3335 |
/// |
3336 | 3336 |
/// TargetMap provides access for the target node of each arc in a digraph, |
3337 | 3337 |
/// which is returned by the \c target() function of the digraph. |
3338 | 3338 |
/// \tparam GR The digraph type. |
3339 | 3339 |
/// \see SourceMap |
3340 | 3340 |
template <typename GR> |
3341 | 3341 |
class TargetMap { |
3342 | 3342 |
public: |
3343 | 3343 |
|
3344 | 3344 |
/// The key type (the \c Arc type of the digraph). |
3345 | 3345 |
typedef typename GR::Arc Key; |
3346 | 3346 |
/// The value type (the \c Node type of the digraph). |
3347 | 3347 |
typedef typename GR::Node Value; |
3348 | 3348 |
|
3349 | 3349 |
/// \brief Constructor |
3350 | 3350 |
/// |
3351 | 3351 |
/// Constructor. |
3352 | 3352 |
/// \param digraph The digraph that the map belongs to. |
3353 | 3353 |
explicit TargetMap(const GR& digraph) : _graph(digraph) {} |
3354 | 3354 |
|
3355 | 3355 |
/// \brief Returns the target node of the given arc. |
3356 | 3356 |
/// |
3357 | 3357 |
/// Returns the target node of the given arc. |
3358 | 3358 |
Value operator[](const Key& e) const { |
3359 | 3359 |
return _graph.target(e); |
3360 | 3360 |
} |
3361 | 3361 |
|
3362 | 3362 |
private: |
3363 | 3363 |
const GR& _graph; |
3364 | 3364 |
}; |
3365 | 3365 |
|
3366 | 3366 |
/// \brief Returns a \c TargetMap class. |
3367 | 3367 |
/// |
3368 | 3368 |
/// This function just returns a \c TargetMap class. |
3369 | 3369 |
/// \relates TargetMap |
3370 | 3370 |
template <typename GR> |
3371 | 3371 |
inline TargetMap<GR> targetMap(const GR& graph) { |
3372 | 3372 |
return TargetMap<GR>(graph); |
3373 | 3373 |
} |
3374 | 3374 |
|
3375 | 3375 |
/// \brief Map of the "forward" directed arc view of edges in a graph. |
3376 | 3376 |
/// |
3377 | 3377 |
/// ForwardMap provides access for the "forward" directed arc view of |
3378 | 3378 |
/// each edge in a graph, which is returned by the \c direct() function |
3379 | 3379 |
/// of the graph with \c true parameter. |
3380 | 3380 |
/// \tparam GR The graph type. |
3381 | 3381 |
/// \see BackwardMap |
3382 | 3382 |
template <typename GR> |
3383 | 3383 |
class ForwardMap { |
3384 | 3384 |
public: |
3385 | 3385 |
|
3386 | 3386 |
/// The key type (the \c Edge type of the digraph). |
3387 | 3387 |
typedef typename GR::Edge Key; |
3388 | 3388 |
/// The value type (the \c Arc type of the digraph). |
3389 | 3389 |
typedef typename GR::Arc Value; |
3390 | 3390 |
|
3391 | 3391 |
/// \brief Constructor |
3392 | 3392 |
/// |
3393 | 3393 |
/// Constructor. |
3394 | 3394 |
/// \param graph The graph that the map belongs to. |
3395 | 3395 |
explicit ForwardMap(const GR& graph) : _graph(graph) {} |
3396 | 3396 |
|
3397 | 3397 |
/// \brief Returns the "forward" directed arc view of the given edge. |
3398 | 3398 |
/// |
3399 | 3399 |
/// Returns the "forward" directed arc view of the given edge. |
3400 | 3400 |
Value operator[](const Key& key) const { |
3401 | 3401 |
return _graph.direct(key, true); |
3402 | 3402 |
} |
3403 | 3403 |
|
3404 | 3404 |
private: |
3405 | 3405 |
const GR& _graph; |
3406 | 3406 |
}; |
3407 | 3407 |
|
3408 | 3408 |
/// \brief Returns a \c ForwardMap class. |
3409 | 3409 |
/// |
3410 | 3410 |
/// This function just returns an \c ForwardMap class. |
3411 | 3411 |
/// \relates ForwardMap |
3412 | 3412 |
template <typename GR> |
3413 | 3413 |
inline ForwardMap<GR> forwardMap(const GR& graph) { |
3414 | 3414 |
return ForwardMap<GR>(graph); |
3415 | 3415 |
} |
3416 | 3416 |
|
3417 | 3417 |
/// \brief Map of the "backward" directed arc view of edges in a graph. |
3418 | 3418 |
/// |
3419 | 3419 |
/// BackwardMap provides access for the "backward" directed arc view of |
3420 | 3420 |
/// each edge in a graph, which is returned by the \c direct() function |
3421 | 3421 |
/// of the graph with \c false parameter. |
3422 | 3422 |
/// \tparam GR The graph type. |
3423 | 3423 |
/// \see ForwardMap |
3424 | 3424 |
template <typename GR> |
3425 | 3425 |
class BackwardMap { |
3426 | 3426 |
public: |
3427 | 3427 |
|
3428 | 3428 |
/// The key type (the \c Edge type of the digraph). |
3429 | 3429 |
typedef typename GR::Edge Key; |
3430 | 3430 |
/// The value type (the \c Arc type of the digraph). |
3431 | 3431 |
typedef typename GR::Arc Value; |
3432 | 3432 |
|
3433 | 3433 |
/// \brief Constructor |
3434 | 3434 |
/// |
3435 | 3435 |
/// Constructor. |
3436 | 3436 |
/// \param graph The graph that the map belongs to. |
3437 | 3437 |
explicit BackwardMap(const GR& graph) : _graph(graph) {} |
3438 | 3438 |
|
3439 | 3439 |
/// \brief Returns the "backward" directed arc view of the given edge. |
3440 | 3440 |
/// |
3441 | 3441 |
/// Returns the "backward" directed arc view of the given edge. |
3442 | 3442 |
Value operator[](const Key& key) const { |
3443 | 3443 |
return _graph.direct(key, false); |
3444 | 3444 |
} |
3445 | 3445 |
|
3446 | 3446 |
private: |
3447 | 3447 |
const GR& _graph; |
3448 | 3448 |
}; |
3449 | 3449 |
|
3450 | 3450 |
/// \brief Returns a \c BackwardMap class |
3451 | 3451 |
|
3452 | 3452 |
/// This function just returns a \c BackwardMap class. |
3453 | 3453 |
/// \relates BackwardMap |
3454 | 3454 |
template <typename GR> |
3455 | 3455 |
inline BackwardMap<GR> backwardMap(const GR& graph) { |
3456 | 3456 |
return BackwardMap<GR>(graph); |
3457 | 3457 |
} |
3458 | 3458 |
|
3459 | 3459 |
/// \brief Map of the in-degrees of nodes in a digraph. |
3460 | 3460 |
/// |
3461 | 3461 |
/// This map returns the in-degree of a node. Once it is constructed, |
3462 | 3462 |
/// the degrees are stored in a standard \c NodeMap, so each query is done |
3463 | 3463 |
/// in constant time. On the other hand, the values are updated automatically |
3464 | 3464 |
/// whenever the digraph changes. |
3465 | 3465 |
/// |
3466 | 3466 |
/// \warning Besides \c addNode() and \c addArc(), a digraph structure |
3467 | 3467 |
/// may provide alternative ways to modify the digraph. |
3468 | 3468 |
/// The correct behavior of InDegMap is not guarantied if these additional |
3469 | 3469 |
/// features are used. For example, the functions |
3470 | 3470 |
/// \ref ListDigraph::changeSource() "changeSource()", |
3471 | 3471 |
/// \ref ListDigraph::changeTarget() "changeTarget()" and |
3472 | 3472 |
/// \ref ListDigraph::reverseArc() "reverseArc()" |
3473 | 3473 |
/// of \ref ListDigraph will \e not update the degree values correctly. |
3474 | 3474 |
/// |
3475 | 3475 |
/// \sa OutDegMap |
3476 | 3476 |
template <typename GR> |
3477 | 3477 |
class InDegMap |
3478 | 3478 |
: protected ItemSetTraits<GR, typename GR::Arc> |
3479 | 3479 |
::ItemNotifier::ObserverBase { |
3480 | 3480 |
|
3481 | 3481 |
public: |
3482 | 3482 |
|
3483 | 3483 |
/// The graph type of InDegMap |
3484 | 3484 |
typedef GR Graph; |
3485 | 3485 |
typedef GR Digraph; |
3486 | 3486 |
/// The key type |
3487 | 3487 |
typedef typename Digraph::Node Key; |
3488 | 3488 |
/// The value type |
3489 | 3489 |
typedef int Value; |
3490 | 3490 |
|
3491 | 3491 |
typedef typename ItemSetTraits<Digraph, typename Digraph::Arc> |
3492 | 3492 |
::ItemNotifier::ObserverBase Parent; |
3493 | 3493 |
|
3494 | 3494 |
private: |
3495 | 3495 |
|
3496 | 3496 |
class AutoNodeMap |
3497 | 3497 |
: public ItemSetTraits<Digraph, Key>::template Map<int>::Type { |
3498 | 3498 |
public: |
3499 | 3499 |
|
3500 | 3500 |
typedef typename ItemSetTraits<Digraph, Key>:: |
3501 | 3501 |
template Map<int>::Type Parent; |
3502 | 3502 |
|
3503 | 3503 |
AutoNodeMap(const Digraph& digraph) : Parent(digraph, 0) {} |
3504 | 3504 |
|
3505 | 3505 |
virtual void add(const Key& key) { |
3506 | 3506 |
Parent::add(key); |
3507 | 3507 |
Parent::set(key, 0); |
3508 | 3508 |
} |
3509 | 3509 |
|
3510 | 3510 |
virtual void add(const std::vector<Key>& keys) { |
3511 | 3511 |
Parent::add(keys); |
3512 | 3512 |
for (int i = 0; i < int(keys.size()); ++i) { |
3513 | 3513 |
Parent::set(keys[i], 0); |
3514 | 3514 |
} |
3515 | 3515 |
} |
3516 | 3516 |
|
3517 | 3517 |
virtual void build() { |
3518 | 3518 |
Parent::build(); |
3519 | 3519 |
Key it; |
3520 | 3520 |
typename Parent::Notifier* nf = Parent::notifier(); |
3521 | 3521 |
for (nf->first(it); it != INVALID; nf->next(it)) { |
3522 | 3522 |
Parent::set(it, 0); |
3523 | 3523 |
} |
3524 | 3524 |
} |
3525 | 3525 |
}; |
3526 | 3526 |
|
3527 | 3527 |
public: |
3528 | 3528 |
|
3529 | 3529 |
/// \brief Constructor. |
3530 | 3530 |
/// |
3531 | 3531 |
/// Constructor for creating an in-degree map. |
3532 | 3532 |
explicit InDegMap(const Digraph& graph) |
3533 | 3533 |
: _digraph(graph), _deg(graph) { |
3534 | 3534 |
Parent::attach(_digraph.notifier(typename Digraph::Arc())); |
3535 | 3535 |
|
3536 | 3536 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) { |
3537 | 3537 |
_deg[it] = countInArcs(_digraph, it); |
3538 | 3538 |
} |
3539 | 3539 |
} |
3540 | 3540 |
|
3541 | 3541 |
/// \brief Gives back the in-degree of a Node. |
3542 | 3542 |
/// |
3543 | 3543 |
/// Gives back the in-degree of a Node. |
3544 | 3544 |
int operator[](const Key& key) const { |
3545 | 3545 |
return _deg[key]; |
3546 | 3546 |
} |
3547 | 3547 |
|
3548 | 3548 |
protected: |
3549 | 3549 |
|
3550 | 3550 |
typedef typename Digraph::Arc Arc; |
3551 | 3551 |
|
3552 | 3552 |
virtual void add(const Arc& arc) { |
3553 | 3553 |
++_deg[_digraph.target(arc)]; |
3554 | 3554 |
} |
3555 | 3555 |
|
3556 | 3556 |
virtual void add(const std::vector<Arc>& arcs) { |
3557 | 3557 |
for (int i = 0; i < int(arcs.size()); ++i) { |
3558 | 3558 |
++_deg[_digraph.target(arcs[i])]; |
3559 | 3559 |
} |
3560 | 3560 |
} |
3561 | 3561 |
|
3562 | 3562 |
virtual void erase(const Arc& arc) { |
3563 | 3563 |
--_deg[_digraph.target(arc)]; |
3564 | 3564 |
} |
3565 | 3565 |
|
3566 | 3566 |
virtual void erase(const std::vector<Arc>& arcs) { |
3567 | 3567 |
for (int i = 0; i < int(arcs.size()); ++i) { |
3568 | 3568 |
--_deg[_digraph.target(arcs[i])]; |
3569 | 3569 |
} |
3570 | 3570 |
} |
3571 | 3571 |
|
3572 | 3572 |
virtual void build() { |
3573 | 3573 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) { |
3574 | 3574 |
_deg[it] = countInArcs(_digraph, it); |
3575 | 3575 |
} |
3576 | 3576 |
} |
3577 | 3577 |
|
3578 | 3578 |
virtual void clear() { |
3579 | 3579 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) { |
3580 | 3580 |
_deg[it] = 0; |
3581 | 3581 |
} |
3582 | 3582 |
} |
3583 | 3583 |
private: |
3584 | 3584 |
|
3585 | 3585 |
const Digraph& _digraph; |
3586 | 3586 |
AutoNodeMap _deg; |
3587 | 3587 |
}; |
3588 | 3588 |
|
3589 | 3589 |
/// \brief Map of the out-degrees of nodes in a digraph. |
3590 | 3590 |
/// |
3591 | 3591 |
/// This map returns the out-degree of a node. Once it is constructed, |
3592 | 3592 |
/// the degrees are stored in a standard \c NodeMap, so each query is done |
3593 | 3593 |
/// in constant time. On the other hand, the values are updated automatically |
3594 | 3594 |
/// whenever the digraph changes. |
3595 | 3595 |
/// |
3596 | 3596 |
/// \warning Besides \c addNode() and \c addArc(), a digraph structure |
3597 | 3597 |
/// may provide alternative ways to modify the digraph. |
3598 | 3598 |
/// The correct behavior of OutDegMap is not guarantied if these additional |
3599 | 3599 |
/// features are used. For example, the functions |
3600 | 3600 |
/// \ref ListDigraph::changeSource() "changeSource()", |
3601 | 3601 |
/// \ref ListDigraph::changeTarget() "changeTarget()" and |
3602 | 3602 |
/// \ref ListDigraph::reverseArc() "reverseArc()" |
3603 | 3603 |
/// of \ref ListDigraph will \e not update the degree values correctly. |
3604 | 3604 |
/// |
3605 | 3605 |
/// \sa InDegMap |
3606 | 3606 |
template <typename GR> |
3607 | 3607 |
class OutDegMap |
3608 | 3608 |
: protected ItemSetTraits<GR, typename GR::Arc> |
3609 | 3609 |
::ItemNotifier::ObserverBase { |
3610 | 3610 |
|
3611 | 3611 |
public: |
3612 | 3612 |
|
3613 | 3613 |
/// The graph type of OutDegMap |
3614 | 3614 |
typedef GR Graph; |
3615 | 3615 |
typedef GR Digraph; |
3616 | 3616 |
/// The key type |
3617 | 3617 |
typedef typename Digraph::Node Key; |
3618 | 3618 |
/// The value type |
3619 | 3619 |
typedef int Value; |
3620 | 3620 |
|
3621 | 3621 |
typedef typename ItemSetTraits<Digraph, typename Digraph::Arc> |
3622 | 3622 |
::ItemNotifier::ObserverBase Parent; |
3623 | 3623 |
|
3624 | 3624 |
private: |
3625 | 3625 |
|
3626 | 3626 |
class AutoNodeMap |
3627 | 3627 |
: public ItemSetTraits<Digraph, Key>::template Map<int>::Type { |
3628 | 3628 |
public: |
3629 | 3629 |
|
3630 | 3630 |
typedef typename ItemSetTraits<Digraph, Key>:: |
3631 | 3631 |
template Map<int>::Type Parent; |
3632 | 3632 |
|
3633 | 3633 |
AutoNodeMap(const Digraph& digraph) : Parent(digraph, 0) {} |
3634 | 3634 |
|
3635 | 3635 |
virtual void add(const Key& key) { |
3636 | 3636 |
Parent::add(key); |
3637 | 3637 |
Parent::set(key, 0); |
3638 | 3638 |
} |
3639 | 3639 |
virtual void add(const std::vector<Key>& keys) { |
3640 | 3640 |
Parent::add(keys); |
3641 | 3641 |
for (int i = 0; i < int(keys.size()); ++i) { |
3642 | 3642 |
Parent::set(keys[i], 0); |
3643 | 3643 |
} |
3644 | 3644 |
} |
3645 | 3645 |
virtual void build() { |
3646 | 3646 |
Parent::build(); |
3647 | 3647 |
Key it; |
3648 | 3648 |
typename Parent::Notifier* nf = Parent::notifier(); |
3649 | 3649 |
for (nf->first(it); it != INVALID; nf->next(it)) { |
3650 | 3650 |
Parent::set(it, 0); |
3651 | 3651 |
} |
3652 | 3652 |
} |
3653 | 3653 |
}; |
3654 | 3654 |
|
3655 | 3655 |
public: |
3656 | 3656 |
|
3657 | 3657 |
/// \brief Constructor. |
3658 | 3658 |
/// |
3659 | 3659 |
/// Constructor for creating an out-degree map. |
3660 | 3660 |
explicit OutDegMap(const Digraph& graph) |
3661 | 3661 |
: _digraph(graph), _deg(graph) { |
3662 | 3662 |
Parent::attach(_digraph.notifier(typename Digraph::Arc())); |
3663 | 3663 |
|
3664 | 3664 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) { |
3665 | 3665 |
_deg[it] = countOutArcs(_digraph, it); |
3666 | 3666 |
} |
3667 | 3667 |
} |
3668 | 3668 |
|
3669 | 3669 |
/// \brief Gives back the out-degree of a Node. |
3670 | 3670 |
/// |
3671 | 3671 |
/// Gives back the out-degree of a Node. |
3672 | 3672 |
int operator[](const Key& key) const { |
3673 | 3673 |
return _deg[key]; |
3674 | 3674 |
} |
3675 | 3675 |
|
3676 | 3676 |
protected: |
3677 | 3677 |
|
3678 | 3678 |
typedef typename Digraph::Arc Arc; |
3679 | 3679 |
|
3680 | 3680 |
virtual void add(const Arc& arc) { |
3681 | 3681 |
++_deg[_digraph.source(arc)]; |
3682 | 3682 |
} |
3683 | 3683 |
|
3684 | 3684 |
virtual void add(const std::vector<Arc>& arcs) { |
3685 | 3685 |
for (int i = 0; i < int(arcs.size()); ++i) { |
3686 | 3686 |
++_deg[_digraph.source(arcs[i])]; |
3687 | 3687 |
} |
3688 | 3688 |
} |
3689 | 3689 |
|
3690 | 3690 |
virtual void erase(const Arc& arc) { |
3691 | 3691 |
--_deg[_digraph.source(arc)]; |
3692 | 3692 |
} |
3693 | 3693 |
|
3694 | 3694 |
virtual void erase(const std::vector<Arc>& arcs) { |
3695 | 3695 |
for (int i = 0; i < int(arcs.size()); ++i) { |
3696 | 3696 |
--_deg[_digraph.source(arcs[i])]; |
3697 | 3697 |
} |
3698 | 3698 |
} |
3699 | 3699 |
|
3700 | 3700 |
virtual void build() { |
3701 | 3701 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) { |
3702 | 3702 |
_deg[it] = countOutArcs(_digraph, it); |
3703 | 3703 |
} |
3704 | 3704 |
} |
3705 | 3705 |
|
3706 | 3706 |
virtual void clear() { |
3707 | 3707 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) { |
3708 | 3708 |
_deg[it] = 0; |
3709 | 3709 |
} |
3710 | 3710 |
} |
3711 | 3711 |
private: |
3712 | 3712 |
|
3713 | 3713 |
const Digraph& _digraph; |
3714 | 3714 |
AutoNodeMap _deg; |
3715 | 3715 |
}; |
3716 | 3716 |
|
3717 | 3717 |
/// \brief Potential difference map |
3718 | 3718 |
/// |
3719 | 3719 |
/// PotentialDifferenceMap returns the difference between the potentials of |
3720 | 3720 |
/// the source and target nodes of each arc in a digraph, i.e. it returns |
3721 | 3721 |
/// \code |
3722 | 3722 |
/// potential[gr.target(arc)] - potential[gr.source(arc)]. |
3723 | 3723 |
/// \endcode |
3724 | 3724 |
/// \tparam GR The digraph type. |
3725 | 3725 |
/// \tparam POT A node map storing the potentials. |
3726 | 3726 |
template <typename GR, typename POT> |
3727 | 3727 |
class PotentialDifferenceMap { |
3728 | 3728 |
public: |
3729 | 3729 |
/// Key type |
3730 | 3730 |
typedef typename GR::Arc Key; |
3731 | 3731 |
/// Value type |
3732 | 3732 |
typedef typename POT::Value Value; |
3733 | 3733 |
|
3734 | 3734 |
/// \brief Constructor |
3735 | 3735 |
/// |
3736 | 3736 |
/// Contructor of the map. |
3737 | 3737 |
explicit PotentialDifferenceMap(const GR& gr, |
3738 | 3738 |
const POT& potential) |
3739 | 3739 |
: _digraph(gr), _potential(potential) {} |
3740 | 3740 |
|
3741 | 3741 |
/// \brief Returns the potential difference for the given arc. |
3742 | 3742 |
/// |
3743 | 3743 |
/// Returns the potential difference for the given arc, i.e. |
3744 | 3744 |
/// \code |
3745 | 3745 |
/// potential[gr.target(arc)] - potential[gr.source(arc)]. |
3746 | 3746 |
/// \endcode |
3747 | 3747 |
Value operator[](const Key& arc) const { |
3748 | 3748 |
return _potential[_digraph.target(arc)] - |
3749 | 3749 |
_potential[_digraph.source(arc)]; |
3750 | 3750 |
} |
3751 | 3751 |
|
3752 | 3752 |
private: |
3753 | 3753 |
const GR& _digraph; |
3754 | 3754 |
const POT& _potential; |
3755 | 3755 |
}; |
3756 | 3756 |
|
3757 | 3757 |
/// \brief Returns a PotentialDifferenceMap. |
3758 | 3758 |
/// |
3759 | 3759 |
/// This function just returns a PotentialDifferenceMap. |
3760 | 3760 |
/// \relates PotentialDifferenceMap |
3761 | 3761 |
template <typename GR, typename POT> |
3762 | 3762 |
PotentialDifferenceMap<GR, POT> |
3763 | 3763 |
potentialDifferenceMap(const GR& gr, const POT& potential) { |
3764 | 3764 |
return PotentialDifferenceMap<GR, POT>(gr, potential); |
3765 | 3765 |
} |
3766 | 3766 |
|
3767 | 3767 |
... | ... |
@@ -132,869 +132,872 @@ |
132 | 132 |
check(map6[A()] == 10 && map7[A()] == 10, |
133 | 133 |
"Something is wrong with ConstMap"); |
134 | 134 |
} |
135 | 135 |
|
136 | 136 |
// IdentityMap |
137 | 137 |
{ |
138 | 138 |
checkConcept<ReadMap<A,A>, IdentityMap<A> >(); |
139 | 139 |
IdentityMap<A> map1; |
140 | 140 |
IdentityMap<A> map2 = map1; |
141 | 141 |
map1 = identityMap<A>(); |
142 | 142 |
|
143 | 143 |
checkConcept<ReadMap<double,double>, IdentityMap<double> >(); |
144 | 144 |
check(identityMap<double>()[1.0] == 1.0 && |
145 | 145 |
identityMap<double>()[3.14] == 3.14, |
146 | 146 |
"Something is wrong with IdentityMap"); |
147 | 147 |
} |
148 | 148 |
|
149 | 149 |
// RangeMap |
150 | 150 |
{ |
151 | 151 |
checkConcept<ReferenceMap<int,B,B&,const B&>, RangeMap<B> >(); |
152 | 152 |
RangeMap<B> map1; |
153 | 153 |
RangeMap<B> map2(10); |
154 | 154 |
RangeMap<B> map3(10,B()); |
155 | 155 |
RangeMap<B> map4 = map1; |
156 | 156 |
RangeMap<B> map5 = rangeMap<B>(); |
157 | 157 |
RangeMap<B> map6 = rangeMap<B>(10); |
158 | 158 |
RangeMap<B> map7 = rangeMap(10,B()); |
159 | 159 |
|
160 | 160 |
checkConcept< ReferenceMap<int, double, double&, const double&>, |
161 | 161 |
RangeMap<double> >(); |
162 | 162 |
std::vector<double> v(10, 0); |
163 | 163 |
v[5] = 100; |
164 | 164 |
RangeMap<double> map8(v); |
165 | 165 |
RangeMap<double> map9 = rangeMap(v); |
166 | 166 |
check(map9.size() == 10 && map9[2] == 0 && map9[5] == 100, |
167 | 167 |
"Something is wrong with RangeMap"); |
168 | 168 |
} |
169 | 169 |
|
170 | 170 |
// SparseMap |
171 | 171 |
{ |
172 | 172 |
checkConcept<ReferenceMap<A,B,B&,const B&>, SparseMap<A,B> >(); |
173 | 173 |
SparseMap<A,B> map1; |
174 | 174 |
SparseMap<A,B> map2 = B(); |
175 | 175 |
SparseMap<A,B> map3 = sparseMap<A,B>(); |
176 | 176 |
SparseMap<A,B> map4 = sparseMap<A>(B()); |
177 | 177 |
|
178 | 178 |
checkConcept< ReferenceMap<double, int, int&, const int&>, |
179 | 179 |
SparseMap<double, int> >(); |
180 | 180 |
std::map<double, int> m; |
181 | 181 |
SparseMap<double, int> map5(m); |
182 | 182 |
SparseMap<double, int> map6(m,10); |
183 | 183 |
SparseMap<double, int> map7 = sparseMap(m); |
184 | 184 |
SparseMap<double, int> map8 = sparseMap(m,10); |
185 | 185 |
|
186 | 186 |
check(map5[1.0] == 0 && map5[3.14] == 0 && |
187 | 187 |
map6[1.0] == 10 && map6[3.14] == 10, |
188 | 188 |
"Something is wrong with SparseMap"); |
189 | 189 |
map5[1.0] = map6[3.14] = 100; |
190 | 190 |
check(map5[1.0] == 100 && map5[3.14] == 0 && |
191 | 191 |
map6[1.0] == 10 && map6[3.14] == 100, |
192 | 192 |
"Something is wrong with SparseMap"); |
193 | 193 |
} |
194 | 194 |
|
195 | 195 |
// ComposeMap |
196 | 196 |
{ |
197 | 197 |
typedef ComposeMap<DoubleMap, ReadMap<B,A> > CompMap; |
198 | 198 |
checkConcept<ReadMap<B,double>, CompMap>(); |
199 | 199 |
CompMap map1 = CompMap(DoubleMap(),ReadMap<B,A>()); |
200 | 200 |
CompMap map2 = composeMap(DoubleMap(), ReadMap<B,A>()); |
201 | 201 |
|
202 | 202 |
SparseMap<double, bool> m1(false); m1[3.14] = true; |
203 | 203 |
RangeMap<double> m2(2); m2[0] = 3.0; m2[1] = 3.14; |
204 | 204 |
check(!composeMap(m1,m2)[0] && composeMap(m1,m2)[1], |
205 | 205 |
"Something is wrong with ComposeMap") |
206 | 206 |
} |
207 | 207 |
|
208 | 208 |
// CombineMap |
209 | 209 |
{ |
210 | 210 |
typedef CombineMap<DoubleMap, DoubleMap, std::plus<double> > CombMap; |
211 | 211 |
checkConcept<ReadMap<A,double>, CombMap>(); |
212 | 212 |
CombMap map1 = CombMap(DoubleMap(), DoubleMap()); |
213 | 213 |
CombMap map2 = combineMap(DoubleMap(), DoubleMap(), std::plus<double>()); |
214 | 214 |
|
215 | 215 |
check(combineMap(constMap<B,int,2>(), identityMap<B>(), &binc)[B()] == 3, |
216 | 216 |
"Something is wrong with CombineMap"); |
217 | 217 |
} |
218 | 218 |
|
219 | 219 |
// FunctorToMap, MapToFunctor |
220 | 220 |
{ |
221 | 221 |
checkConcept<ReadMap<A,B>, FunctorToMap<F,A,B> >(); |
222 | 222 |
checkConcept<ReadMap<A,B>, FunctorToMap<F> >(); |
223 | 223 |
FunctorToMap<F> map1; |
224 | 224 |
FunctorToMap<F> map2 = FunctorToMap<F>(F()); |
225 | 225 |
B b = functorToMap(F())[A()]; |
226 | 226 |
|
227 | 227 |
checkConcept<ReadMap<A,B>, MapToFunctor<ReadMap<A,B> > >(); |
228 | 228 |
MapToFunctor<ReadMap<A,B> > map = |
229 | 229 |
MapToFunctor<ReadMap<A,B> >(ReadMap<A,B>()); |
230 | 230 |
|
231 | 231 |
check(functorToMap(&func)[A()] == 3, |
232 | 232 |
"Something is wrong with FunctorToMap"); |
233 | 233 |
check(mapToFunctor(constMap<A,int>(2))(A()) == 2, |
234 | 234 |
"Something is wrong with MapToFunctor"); |
235 | 235 |
check(mapToFunctor(functorToMap(&func))(A()) == 3 && |
236 | 236 |
mapToFunctor(functorToMap(&func))[A()] == 3, |
237 | 237 |
"Something is wrong with FunctorToMap or MapToFunctor"); |
238 | 238 |
check(functorToMap(mapToFunctor(constMap<A,int>(2)))[A()] == 2, |
239 | 239 |
"Something is wrong with FunctorToMap or MapToFunctor"); |
240 | 240 |
} |
241 | 241 |
|
242 | 242 |
// ConvertMap |
243 | 243 |
{ |
244 | 244 |
checkConcept<ReadMap<double,double>, |
245 | 245 |
ConvertMap<ReadMap<double, int>, double> >(); |
246 | 246 |
ConvertMap<RangeMap<bool>, int> map1(rangeMap(1, true)); |
247 | 247 |
ConvertMap<RangeMap<bool>, int> map2 = convertMap<int>(rangeMap(2, false)); |
248 | 248 |
} |
249 | 249 |
|
250 | 250 |
// ForkMap |
251 | 251 |
{ |
252 | 252 |
checkConcept<DoubleWriteMap, ForkMap<DoubleWriteMap, DoubleWriteMap> >(); |
253 | 253 |
|
254 | 254 |
typedef RangeMap<double> RM; |
255 | 255 |
typedef SparseMap<int, double> SM; |
256 | 256 |
RM m1(10, -1); |
257 | 257 |
SM m2(-1); |
258 | 258 |
checkConcept<ReadWriteMap<int, double>, ForkMap<RM, SM> >(); |
259 | 259 |
checkConcept<ReadWriteMap<int, double>, ForkMap<SM, RM> >(); |
260 | 260 |
ForkMap<RM, SM> map1(m1,m2); |
261 | 261 |
ForkMap<SM, RM> map2 = forkMap(m2,m1); |
262 | 262 |
map2.set(5, 10); |
263 | 263 |
check(m1[1] == -1 && m1[5] == 10 && m2[1] == -1 && |
264 | 264 |
m2[5] == 10 && map2[1] == -1 && map2[5] == 10, |
265 | 265 |
"Something is wrong with ForkMap"); |
266 | 266 |
} |
267 | 267 |
|
268 | 268 |
// Arithmetic maps: |
269 | 269 |
// - AddMap, SubMap, MulMap, DivMap |
270 | 270 |
// - ShiftMap, ShiftWriteMap, ScaleMap, ScaleWriteMap |
271 | 271 |
// - NegMap, NegWriteMap, AbsMap |
272 | 272 |
{ |
273 | 273 |
checkConcept<DoubleMap, AddMap<DoubleMap,DoubleMap> >(); |
274 | 274 |
checkConcept<DoubleMap, SubMap<DoubleMap,DoubleMap> >(); |
275 | 275 |
checkConcept<DoubleMap, MulMap<DoubleMap,DoubleMap> >(); |
276 | 276 |
checkConcept<DoubleMap, DivMap<DoubleMap,DoubleMap> >(); |
277 | 277 |
|
278 | 278 |
ConstMap<int, double> c1(1.0), c2(3.14); |
279 | 279 |
IdentityMap<int> im; |
280 | 280 |
ConvertMap<IdentityMap<int>, double> id(im); |
281 | 281 |
check(addMap(c1,id)[0] == 1.0 && addMap(c1,id)[10] == 11.0, |
282 | 282 |
"Something is wrong with AddMap"); |
283 | 283 |
check(subMap(id,c1)[0] == -1.0 && subMap(id,c1)[10] == 9.0, |
284 | 284 |
"Something is wrong with SubMap"); |
285 | 285 |
check(mulMap(id,c2)[0] == 0 && mulMap(id,c2)[2] == 6.28, |
286 | 286 |
"Something is wrong with MulMap"); |
287 | 287 |
check(divMap(c2,id)[1] == 3.14 && divMap(c2,id)[2] == 1.57, |
288 | 288 |
"Something is wrong with DivMap"); |
289 | 289 |
|
290 | 290 |
checkConcept<DoubleMap, ShiftMap<DoubleMap> >(); |
291 | 291 |
checkConcept<DoubleWriteMap, ShiftWriteMap<DoubleWriteMap> >(); |
292 | 292 |
checkConcept<DoubleMap, ScaleMap<DoubleMap> >(); |
293 | 293 |
checkConcept<DoubleWriteMap, ScaleWriteMap<DoubleWriteMap> >(); |
294 | 294 |
checkConcept<DoubleMap, NegMap<DoubleMap> >(); |
295 | 295 |
checkConcept<DoubleWriteMap, NegWriteMap<DoubleWriteMap> >(); |
296 | 296 |
checkConcept<DoubleMap, AbsMap<DoubleMap> >(); |
297 | 297 |
|
298 | 298 |
check(shiftMap(id, 2.0)[1] == 3.0 && shiftMap(id, 2.0)[10] == 12.0, |
299 | 299 |
"Something is wrong with ShiftMap"); |
300 | 300 |
check(shiftWriteMap(id, 2.0)[1] == 3.0 && |
301 | 301 |
shiftWriteMap(id, 2.0)[10] == 12.0, |
302 | 302 |
"Something is wrong with ShiftWriteMap"); |
303 | 303 |
check(scaleMap(id, 2.0)[1] == 2.0 && scaleMap(id, 2.0)[10] == 20.0, |
304 | 304 |
"Something is wrong with ScaleMap"); |
305 | 305 |
check(scaleWriteMap(id, 2.0)[1] == 2.0 && |
306 | 306 |
scaleWriteMap(id, 2.0)[10] == 20.0, |
307 | 307 |
"Something is wrong with ScaleWriteMap"); |
308 | 308 |
check(negMap(id)[1] == -1.0 && negMap(id)[-10] == 10.0, |
309 | 309 |
"Something is wrong with NegMap"); |
310 | 310 |
check(negWriteMap(id)[1] == -1.0 && negWriteMap(id)[-10] == 10.0, |
311 | 311 |
"Something is wrong with NegWriteMap"); |
312 | 312 |
check(absMap(id)[1] == 1.0 && absMap(id)[-10] == 10.0, |
313 | 313 |
"Something is wrong with AbsMap"); |
314 | 314 |
} |
315 | 315 |
|
316 | 316 |
// Logical maps: |
317 | 317 |
// - TrueMap, FalseMap |
318 | 318 |
// - AndMap, OrMap |
319 | 319 |
// - NotMap, NotWriteMap |
320 | 320 |
// - EqualMap, LessMap |
321 | 321 |
{ |
322 | 322 |
checkConcept<BoolMap, TrueMap<A> >(); |
323 | 323 |
checkConcept<BoolMap, FalseMap<A> >(); |
324 | 324 |
checkConcept<BoolMap, AndMap<BoolMap,BoolMap> >(); |
325 | 325 |
checkConcept<BoolMap, OrMap<BoolMap,BoolMap> >(); |
326 | 326 |
checkConcept<BoolMap, NotMap<BoolMap> >(); |
327 | 327 |
checkConcept<BoolWriteMap, NotWriteMap<BoolWriteMap> >(); |
328 | 328 |
checkConcept<BoolMap, EqualMap<DoubleMap,DoubleMap> >(); |
329 | 329 |
checkConcept<BoolMap, LessMap<DoubleMap,DoubleMap> >(); |
330 | 330 |
|
331 | 331 |
TrueMap<int> tm; |
332 | 332 |
FalseMap<int> fm; |
333 | 333 |
RangeMap<bool> rm(2); |
334 | 334 |
rm[0] = true; rm[1] = false; |
335 | 335 |
check(andMap(tm,rm)[0] && !andMap(tm,rm)[1] && |
336 | 336 |
!andMap(fm,rm)[0] && !andMap(fm,rm)[1], |
337 | 337 |
"Something is wrong with AndMap"); |
338 | 338 |
check(orMap(tm,rm)[0] && orMap(tm,rm)[1] && |
339 | 339 |
orMap(fm,rm)[0] && !orMap(fm,rm)[1], |
340 | 340 |
"Something is wrong with OrMap"); |
341 | 341 |
check(!notMap(rm)[0] && notMap(rm)[1], |
342 | 342 |
"Something is wrong with NotMap"); |
343 | 343 |
check(!notWriteMap(rm)[0] && notWriteMap(rm)[1], |
344 | 344 |
"Something is wrong with NotWriteMap"); |
345 | 345 |
|
346 | 346 |
ConstMap<int, double> cm(2.0); |
347 | 347 |
IdentityMap<int> im; |
348 | 348 |
ConvertMap<IdentityMap<int>, double> id(im); |
349 | 349 |
check(lessMap(id,cm)[1] && !lessMap(id,cm)[2] && !lessMap(id,cm)[3], |
350 | 350 |
"Something is wrong with LessMap"); |
351 | 351 |
check(!equalMap(id,cm)[1] && equalMap(id,cm)[2] && !equalMap(id,cm)[3], |
352 | 352 |
"Something is wrong with EqualMap"); |
353 | 353 |
} |
354 | 354 |
|
355 | 355 |
// LoggerBoolMap |
356 | 356 |
{ |
357 | 357 |
typedef std::vector<int> vec; |
358 | 358 |
checkConcept<WriteMap<int, bool>, LoggerBoolMap<vec::iterator> >(); |
359 | 359 |
checkConcept<WriteMap<int, bool>, |
360 | 360 |
LoggerBoolMap<std::back_insert_iterator<vec> > >(); |
361 | 361 |
|
362 | 362 |
vec v1; |
363 | 363 |
vec v2(10); |
364 | 364 |
LoggerBoolMap<std::back_insert_iterator<vec> > |
365 | 365 |
map1(std::back_inserter(v1)); |
366 | 366 |
LoggerBoolMap<vec::iterator> map2(v2.begin()); |
367 | 367 |
map1.set(10, false); |
368 | 368 |
map1.set(20, true); map2.set(20, true); |
369 | 369 |
map1.set(30, false); map2.set(40, false); |
370 | 370 |
map1.set(50, true); map2.set(50, true); |
371 | 371 |
map1.set(60, true); map2.set(60, true); |
372 | 372 |
check(v1.size() == 3 && v2.size() == 10 && |
373 | 373 |
v1[0]==20 && v1[1]==50 && v1[2]==60 && |
374 | 374 |
v2[0]==20 && v2[1]==50 && v2[2]==60, |
375 | 375 |
"Something is wrong with LoggerBoolMap"); |
376 | 376 |
|
377 | 377 |
int i = 0; |
378 | 378 |
for ( LoggerBoolMap<vec::iterator>::Iterator it = map2.begin(); |
379 | 379 |
it != map2.end(); ++it ) |
380 | 380 |
check(v1[i++] == *it, "Something is wrong with LoggerBoolMap"); |
381 | 381 |
|
382 | 382 |
typedef ListDigraph Graph; |
383 | 383 |
DIGRAPH_TYPEDEFS(Graph); |
384 | 384 |
Graph gr; |
385 | 385 |
|
386 | 386 |
Node n0 = gr.addNode(); |
387 | 387 |
Node n1 = gr.addNode(); |
388 | 388 |
Node n2 = gr.addNode(); |
389 | 389 |
Node n3 = gr.addNode(); |
390 | 390 |
|
391 | 391 |
gr.addArc(n3, n0); |
392 | 392 |
gr.addArc(n3, n2); |
393 | 393 |
gr.addArc(n0, n2); |
394 | 394 |
gr.addArc(n2, n1); |
395 | 395 |
gr.addArc(n0, n1); |
396 | 396 |
|
397 | 397 |
{ |
398 | 398 |
std::vector<Node> v; |
399 | 399 |
dfs(gr).processedMap(loggerBoolMap(std::back_inserter(v))).run(); |
400 | 400 |
|
401 | 401 |
check(v.size()==4 && v[0]==n1 && v[1]==n2 && v[2]==n0 && v[3]==n3, |
402 | 402 |
"Something is wrong with LoggerBoolMap"); |
403 | 403 |
} |
404 | 404 |
{ |
405 | 405 |
std::vector<Node> v(countNodes(gr)); |
406 | 406 |
dfs(gr).processedMap(loggerBoolMap(v.begin())).run(); |
407 | 407 |
|
408 | 408 |
check(v.size()==4 && v[0]==n1 && v[1]==n2 && v[2]==n0 && v[3]==n3, |
409 | 409 |
"Something is wrong with LoggerBoolMap"); |
410 | 410 |
} |
411 | 411 |
} |
412 | 412 |
|
413 | 413 |
// IdMap, RangeIdMap |
414 | 414 |
{ |
415 | 415 |
typedef ListDigraph Graph; |
416 | 416 |
DIGRAPH_TYPEDEFS(Graph); |
417 | 417 |
|
418 | 418 |
checkConcept<ReadMap<Node, int>, IdMap<Graph, Node> >(); |
419 | 419 |
checkConcept<ReadMap<Arc, int>, IdMap<Graph, Arc> >(); |
420 | 420 |
checkConcept<ReadMap<Node, int>, RangeIdMap<Graph, Node> >(); |
421 | 421 |
checkConcept<ReadMap<Arc, int>, RangeIdMap<Graph, Arc> >(); |
422 | 422 |
|
423 | 423 |
Graph gr; |
424 | 424 |
IdMap<Graph, Node> nmap(gr); |
425 | 425 |
IdMap<Graph, Arc> amap(gr); |
426 | 426 |
RangeIdMap<Graph, Node> nrmap(gr); |
427 | 427 |
RangeIdMap<Graph, Arc> armap(gr); |
428 | 428 |
|
429 | 429 |
Node n0 = gr.addNode(); |
430 | 430 |
Node n1 = gr.addNode(); |
431 | 431 |
Node n2 = gr.addNode(); |
432 | 432 |
|
433 | 433 |
Arc a0 = gr.addArc(n0, n1); |
434 | 434 |
Arc a1 = gr.addArc(n0, n2); |
435 | 435 |
Arc a2 = gr.addArc(n2, n1); |
436 | 436 |
Arc a3 = gr.addArc(n2, n0); |
437 | 437 |
|
438 | 438 |
check(nmap[n0] == gr.id(n0) && nmap(gr.id(n0)) == n0, "Wrong IdMap"); |
439 | 439 |
check(nmap[n1] == gr.id(n1) && nmap(gr.id(n1)) == n1, "Wrong IdMap"); |
440 | 440 |
check(nmap[n2] == gr.id(n2) && nmap(gr.id(n2)) == n2, "Wrong IdMap"); |
441 | 441 |
|
442 | 442 |
check(amap[a0] == gr.id(a0) && amap(gr.id(a0)) == a0, "Wrong IdMap"); |
443 | 443 |
check(amap[a1] == gr.id(a1) && amap(gr.id(a1)) == a1, "Wrong IdMap"); |
444 | 444 |
check(amap[a2] == gr.id(a2) && amap(gr.id(a2)) == a2, "Wrong IdMap"); |
445 | 445 |
check(amap[a3] == gr.id(a3) && amap(gr.id(a3)) == a3, "Wrong IdMap"); |
446 | 446 |
|
447 | 447 |
check(nmap.inverse()[gr.id(n0)] == n0, "Wrong IdMap::InverseMap"); |
448 | 448 |
check(amap.inverse()[gr.id(a0)] == a0, "Wrong IdMap::InverseMap"); |
449 | 449 |
|
450 | 450 |
check(nrmap.size() == 3 && armap.size() == 4, |
451 | 451 |
"Wrong RangeIdMap::size()"); |
452 | 452 |
|
453 | 453 |
check(nrmap[n0] == 0 && nrmap(0) == n0, "Wrong RangeIdMap"); |
454 | 454 |
check(nrmap[n1] == 1 && nrmap(1) == n1, "Wrong RangeIdMap"); |
455 | 455 |
check(nrmap[n2] == 2 && nrmap(2) == n2, "Wrong RangeIdMap"); |
456 | 456 |
|
457 | 457 |
check(armap[a0] == 0 && armap(0) == a0, "Wrong RangeIdMap"); |
458 | 458 |
check(armap[a1] == 1 && armap(1) == a1, "Wrong RangeIdMap"); |
459 | 459 |
check(armap[a2] == 2 && armap(2) == a2, "Wrong RangeIdMap"); |
460 | 460 |
check(armap[a3] == 3 && armap(3) == a3, "Wrong RangeIdMap"); |
461 | 461 |
|
462 | 462 |
check(nrmap.inverse()[0] == n0, "Wrong RangeIdMap::InverseMap"); |
463 | 463 |
check(armap.inverse()[0] == a0, "Wrong RangeIdMap::InverseMap"); |
464 | 464 |
|
465 | 465 |
gr.erase(n1); |
466 | 466 |
|
467 | 467 |
if (nrmap[n0] == 1) nrmap.swap(n0, n2); |
468 | 468 |
nrmap.swap(n2, n0); |
469 | 469 |
if (armap[a1] == 1) armap.swap(a1, a3); |
470 | 470 |
armap.swap(a3, a1); |
471 | 471 |
|
472 | 472 |
check(nrmap.size() == 2 && armap.size() == 2, |
473 | 473 |
"Wrong RangeIdMap::size()"); |
474 | 474 |
|
475 | 475 |
check(nrmap[n0] == 1 && nrmap(1) == n0, "Wrong RangeIdMap"); |
476 | 476 |
check(nrmap[n2] == 0 && nrmap(0) == n2, "Wrong RangeIdMap"); |
477 | 477 |
|
478 | 478 |
check(armap[a1] == 1 && armap(1) == a1, "Wrong RangeIdMap"); |
479 | 479 |
check(armap[a3] == 0 && armap(0) == a3, "Wrong RangeIdMap"); |
480 | 480 |
|
481 | 481 |
check(nrmap.inverse()[0] == n2, "Wrong RangeIdMap::InverseMap"); |
482 | 482 |
check(armap.inverse()[0] == a3, "Wrong RangeIdMap::InverseMap"); |
483 | 483 |
} |
484 | 484 |
|
485 | 485 |
// SourceMap, TargetMap, ForwardMap, BackwardMap, InDegMap, OutDegMap |
486 | 486 |
{ |
487 | 487 |
typedef ListGraph Graph; |
488 | 488 |
GRAPH_TYPEDEFS(Graph); |
489 | 489 |
|
490 | 490 |
checkConcept<ReadMap<Arc, Node>, SourceMap<Graph> >(); |
491 | 491 |
checkConcept<ReadMap<Arc, Node>, TargetMap<Graph> >(); |
492 | 492 |
checkConcept<ReadMap<Edge, Arc>, ForwardMap<Graph> >(); |
493 | 493 |
checkConcept<ReadMap<Edge, Arc>, BackwardMap<Graph> >(); |
494 | 494 |
checkConcept<ReadMap<Node, int>, InDegMap<Graph> >(); |
495 | 495 |
checkConcept<ReadMap<Node, int>, OutDegMap<Graph> >(); |
496 | 496 |
|
497 | 497 |
Graph gr; |
498 | 498 |
Node n0 = gr.addNode(); |
499 | 499 |
Node n1 = gr.addNode(); |
500 | 500 |
Node n2 = gr.addNode(); |
501 | 501 |
|
502 | 502 |
gr.addEdge(n0,n1); |
503 | 503 |
gr.addEdge(n1,n2); |
504 | 504 |
gr.addEdge(n0,n2); |
505 | 505 |
gr.addEdge(n2,n1); |
506 | 506 |
gr.addEdge(n1,n2); |
507 | 507 |
gr.addEdge(n0,n1); |
508 | 508 |
|
509 | 509 |
for (EdgeIt e(gr); e != INVALID; ++e) { |
510 | 510 |
check(forwardMap(gr)[e] == gr.direct(e, true), "Wrong ForwardMap"); |
511 | 511 |
check(backwardMap(gr)[e] == gr.direct(e, false), "Wrong BackwardMap"); |
512 | 512 |
} |
513 | 513 |
|
514 | 514 |
check(mapCompare(gr, |
515 | 515 |
sourceMap(orienter(gr, constMap<Edge, bool>(true))), |
516 | 516 |
targetMap(orienter(gr, constMap<Edge, bool>(false)))), |
517 | 517 |
"Wrong SourceMap or TargetMap"); |
518 | 518 |
|
519 | 519 |
typedef Orienter<Graph, const ConstMap<Edge, bool> > Digraph; |
520 | 520 |
Digraph dgr(gr, constMap<Edge, bool>(true)); |
521 | 521 |
OutDegMap<Digraph> odm(dgr); |
522 | 522 |
InDegMap<Digraph> idm(dgr); |
523 | 523 |
|
524 | 524 |
check(odm[n0] == 3 && odm[n1] == 2 && odm[n2] == 1, "Wrong OutDegMap"); |
525 | 525 |
check(idm[n0] == 0 && idm[n1] == 3 && idm[n2] == 3, "Wrong InDegMap"); |
526 | 526 |
|
527 | 527 |
gr.addEdge(n2, n0); |
528 | 528 |
|
529 | 529 |
check(odm[n0] == 3 && odm[n1] == 2 && odm[n2] == 2, "Wrong OutDegMap"); |
530 | 530 |
check(idm[n0] == 1 && idm[n1] == 3 && idm[n2] == 3, "Wrong InDegMap"); |
531 | 531 |
} |
532 | 532 |
|
533 | 533 |
// CrossRefMap |
534 | 534 |
{ |
535 | 535 |
typedef ListDigraph Graph; |
536 | 536 |
DIGRAPH_TYPEDEFS(Graph); |
537 | 537 |
|
538 | 538 |
checkConcept<ReadWriteMap<Node, int>, |
539 | 539 |
CrossRefMap<Graph, Node, int> >(); |
540 | 540 |
checkConcept<ReadWriteMap<Node, bool>, |
541 | 541 |
CrossRefMap<Graph, Node, bool> >(); |
542 | 542 |
checkConcept<ReadWriteMap<Node, double>, |
543 | 543 |
CrossRefMap<Graph, Node, double> >(); |
544 | 544 |
|
545 | 545 |
Graph gr; |
546 | 546 |
typedef CrossRefMap<Graph, Node, char> CRMap; |
547 | 547 |
CRMap map(gr); |
548 | 548 |
|
549 | 549 |
Node n0 = gr.addNode(); |
550 | 550 |
Node n1 = gr.addNode(); |
551 | 551 |
Node n2 = gr.addNode(); |
552 | 552 |
|
553 | 553 |
map.set(n0, 'A'); |
554 | 554 |
map.set(n1, 'B'); |
555 | 555 |
map.set(n2, 'C'); |
556 | 556 |
|
557 | 557 |
check(map[n0] == 'A' && map('A') == n0 && map.inverse()['A'] == n0, |
558 | 558 |
"Wrong CrossRefMap"); |
559 | 559 |
check(map[n1] == 'B' && map('B') == n1 && map.inverse()['B'] == n1, |
560 | 560 |
"Wrong CrossRefMap"); |
561 | 561 |
check(map[n2] == 'C' && map('C') == n2 && map.inverse()['C'] == n2, |
562 | 562 |
"Wrong CrossRefMap"); |
563 | 563 |
check(map.count('A') == 1 && map.count('B') == 1 && map.count('C') == 1, |
564 | 564 |
"Wrong CrossRefMap::count()"); |
565 | 565 |
|
566 | 566 |
CRMap::ValueIt it = map.beginValue(); |
567 | 567 |
check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' && |
568 | 568 |
it == map.endValue(), "Wrong value iterator"); |
569 | 569 |
|
570 | 570 |
map.set(n2, 'A'); |
571 | 571 |
|
572 | 572 |
check(map[n0] == 'A' && map[n1] == 'B' && map[n2] == 'A', |
573 | 573 |
"Wrong CrossRefMap"); |
574 | 574 |
check(map('A') == n0 && map.inverse()['A'] == n0, "Wrong CrossRefMap"); |
575 | 575 |
check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap"); |
576 | 576 |
check(map('C') == INVALID && map.inverse()['C'] == INVALID, |
577 | 577 |
"Wrong CrossRefMap"); |
578 | 578 |
check(map.count('A') == 2 && map.count('B') == 1 && map.count('C') == 0, |
579 | 579 |
"Wrong CrossRefMap::count()"); |
580 | 580 |
|
581 | 581 |
it = map.beginValue(); |
582 | 582 |
check(*it++ == 'A' && *it++ == 'A' && *it++ == 'B' && |
583 | 583 |
it == map.endValue(), "Wrong value iterator"); |
584 | 584 |
|
585 | 585 |
map.set(n0, 'C'); |
586 | 586 |
|
587 | 587 |
check(map[n0] == 'C' && map[n1] == 'B' && map[n2] == 'A', |
588 | 588 |
"Wrong CrossRefMap"); |
589 | 589 |
check(map('A') == n2 && map.inverse()['A'] == n2, "Wrong CrossRefMap"); |
590 | 590 |
check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap"); |
591 | 591 |
check(map('C') == n0 && map.inverse()['C'] == n0, "Wrong CrossRefMap"); |
592 | 592 |
check(map.count('A') == 1 && map.count('B') == 1 && map.count('C') == 1, |
593 | 593 |
"Wrong CrossRefMap::count()"); |
594 | 594 |
|
595 | 595 |
it = map.beginValue(); |
596 | 596 |
check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' && |
597 | 597 |
it == map.endValue(), "Wrong value iterator"); |
598 | 598 |
} |
599 | 599 |
|
600 | 600 |
// CrossRefMap |
601 | 601 |
{ |
602 | 602 |
typedef SmartDigraph Graph; |
603 | 603 |
DIGRAPH_TYPEDEFS(Graph); |
604 | 604 |
|
605 | 605 |
checkConcept<ReadWriteMap<Node, int>, |
606 | 606 |
CrossRefMap<Graph, Node, int> >(); |
607 | 607 |
|
608 | 608 |
Graph gr; |
609 | 609 |
typedef CrossRefMap<Graph, Node, char> CRMap; |
610 | 610 |
typedef CRMap::ValueIterator ValueIt; |
611 | 611 |
CRMap map(gr); |
612 | 612 |
|
613 | 613 |
Node n0 = gr.addNode(); |
614 | 614 |
Node n1 = gr.addNode(); |
615 | 615 |
Node n2 = gr.addNode(); |
616 | 616 |
|
617 | 617 |
map.set(n0, 'A'); |
618 | 618 |
map.set(n1, 'B'); |
619 | 619 |
map.set(n2, 'C'); |
620 | 620 |
map.set(n2, 'A'); |
621 | 621 |
map.set(n0, 'C'); |
622 | 622 |
|
623 | 623 |
check(map[n0] == 'C' && map[n1] == 'B' && map[n2] == 'A', |
624 | 624 |
"Wrong CrossRefMap"); |
625 | 625 |
check(map('A') == n2 && map.inverse()['A'] == n2, "Wrong CrossRefMap"); |
626 | 626 |
check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap"); |
627 | 627 |
check(map('C') == n0 && map.inverse()['C'] == n0, "Wrong CrossRefMap"); |
628 | 628 |
|
629 | 629 |
ValueIt it = map.beginValue(); |
630 | 630 |
check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' && |
631 | 631 |
it == map.endValue(), "Wrong value iterator"); |
632 | 632 |
} |
633 | 633 |
|
634 | 634 |
// Iterable bool map |
635 | 635 |
{ |
636 | 636 |
typedef SmartGraph Graph; |
637 | 637 |
typedef SmartGraph::Node Item; |
638 | 638 |
|
639 | 639 |
typedef IterableBoolMap<SmartGraph, SmartGraph::Node> Ibm; |
640 | 640 |
checkConcept<ReferenceMap<Item, bool, bool&, const bool&>, Ibm>(); |
641 | 641 |
|
642 | 642 |
const int num = 10; |
643 | 643 |
Graph g; |
644 |
Ibm map0(g, true); |
|
644 | 645 |
std::vector<Item> items; |
645 | 646 |
for (int i = 0; i < num; ++i) { |
646 | 647 |
items.push_back(g.addNode()); |
647 | 648 |
} |
648 | 649 |
|
649 | 650 |
Ibm map1(g, true); |
650 | 651 |
int n = 0; |
651 | 652 |
for (Ibm::TrueIt it(map1); it != INVALID; ++it) { |
652 | 653 |
check(map1[static_cast<Item>(it)], "Wrong TrueIt"); |
653 | 654 |
++n; |
654 | 655 |
} |
655 | 656 |
check(n == num, "Wrong number"); |
656 | 657 |
|
657 | 658 |
n = 0; |
658 | 659 |
for (Ibm::ItemIt it(map1, true); it != INVALID; ++it) { |
659 | 660 |
check(map1[static_cast<Item>(it)], "Wrong ItemIt for true"); |
660 | 661 |
++n; |
661 | 662 |
} |
662 | 663 |
check(n == num, "Wrong number"); |
663 | 664 |
check(Ibm::FalseIt(map1) == INVALID, "Wrong FalseIt"); |
664 | 665 |
check(Ibm::ItemIt(map1, false) == INVALID, "Wrong ItemIt for false"); |
665 | 666 |
|
666 | 667 |
map1[items[5]] = true; |
667 | 668 |
|
668 | 669 |
n = 0; |
669 | 670 |
for (Ibm::ItemIt it(map1, true); it != INVALID; ++it) { |
670 | 671 |
check(map1[static_cast<Item>(it)], "Wrong ItemIt for true"); |
671 | 672 |
++n; |
672 | 673 |
} |
673 | 674 |
check(n == num, "Wrong number"); |
674 | 675 |
|
675 | 676 |
map1[items[num / 2]] = false; |
676 | 677 |
check(map1[items[num / 2]] == false, "Wrong map value"); |
677 | 678 |
|
678 | 679 |
n = 0; |
679 | 680 |
for (Ibm::TrueIt it(map1); it != INVALID; ++it) { |
680 | 681 |
check(map1[static_cast<Item>(it)], "Wrong TrueIt for true"); |
681 | 682 |
++n; |
682 | 683 |
} |
683 | 684 |
check(n == num - 1, "Wrong number"); |
684 | 685 |
|
685 | 686 |
n = 0; |
686 | 687 |
for (Ibm::FalseIt it(map1); it != INVALID; ++it) { |
687 | 688 |
check(!map1[static_cast<Item>(it)], "Wrong FalseIt for true"); |
688 | 689 |
++n; |
689 | 690 |
} |
690 | 691 |
check(n == 1, "Wrong number"); |
691 | 692 |
|
692 | 693 |
map1[items[0]] = false; |
693 | 694 |
check(map1[items[0]] == false, "Wrong map value"); |
694 | 695 |
|
695 | 696 |
map1[items[num - 1]] = false; |
696 | 697 |
check(map1[items[num - 1]] == false, "Wrong map value"); |
697 | 698 |
|
698 | 699 |
n = 0; |
699 | 700 |
for (Ibm::TrueIt it(map1); it != INVALID; ++it) { |
700 | 701 |
check(map1[static_cast<Item>(it)], "Wrong TrueIt for true"); |
701 | 702 |
++n; |
702 | 703 |
} |
703 | 704 |
check(n == num - 3, "Wrong number"); |
704 | 705 |
check(map1.trueNum() == num - 3, "Wrong number"); |
705 | 706 |
|
706 | 707 |
n = 0; |
707 | 708 |
for (Ibm::FalseIt it(map1); it != INVALID; ++it) { |
708 | 709 |
check(!map1[static_cast<Item>(it)], "Wrong FalseIt for true"); |
709 | 710 |
++n; |
710 | 711 |
} |
711 | 712 |
check(n == 3, "Wrong number"); |
712 | 713 |
check(map1.falseNum() == 3, "Wrong number"); |
713 | 714 |
} |
714 | 715 |
|
715 | 716 |
// Iterable int map |
716 | 717 |
{ |
717 | 718 |
typedef SmartGraph Graph; |
718 | 719 |
typedef SmartGraph::Node Item; |
719 | 720 |
typedef IterableIntMap<SmartGraph, SmartGraph::Node> Iim; |
720 | 721 |
|
721 | 722 |
checkConcept<ReferenceMap<Item, int, int&, const int&>, Iim>(); |
722 | 723 |
|
723 | 724 |
const int num = 10; |
724 | 725 |
Graph g; |
726 |
Iim map0(g, 0); |
|
725 | 727 |
std::vector<Item> items; |
726 | 728 |
for (int i = 0; i < num; ++i) { |
727 | 729 |
items.push_back(g.addNode()); |
728 | 730 |
} |
729 | 731 |
|
730 | 732 |
Iim map1(g); |
731 | 733 |
check(map1.size() == 0, "Wrong size"); |
732 | 734 |
|
733 | 735 |
for (int i = 0; i < num; ++i) { |
734 | 736 |
map1[items[i]] = i; |
735 | 737 |
} |
736 | 738 |
check(map1.size() == num, "Wrong size"); |
737 | 739 |
|
738 | 740 |
for (int i = 0; i < num; ++i) { |
739 | 741 |
Iim::ItemIt it(map1, i); |
740 | 742 |
check(static_cast<Item>(it) == items[i], "Wrong value"); |
741 | 743 |
++it; |
742 | 744 |
check(static_cast<Item>(it) == INVALID, "Wrong value"); |
743 | 745 |
} |
744 | 746 |
|
745 | 747 |
for (int i = 0; i < num; ++i) { |
746 | 748 |
map1[items[i]] = i % 2; |
747 | 749 |
} |
748 | 750 |
check(map1.size() == 2, "Wrong size"); |
749 | 751 |
|
750 | 752 |
int n = 0; |
751 | 753 |
for (Iim::ItemIt it(map1, 0); it != INVALID; ++it) { |
752 | 754 |
check(map1[static_cast<Item>(it)] == 0, "Wrong value"); |
753 | 755 |
++n; |
754 | 756 |
} |
755 | 757 |
check(n == (num + 1) / 2, "Wrong number"); |
756 | 758 |
|
757 | 759 |
for (Iim::ItemIt it(map1, 1); it != INVALID; ++it) { |
758 | 760 |
check(map1[static_cast<Item>(it)] == 1, "Wrong value"); |
759 | 761 |
++n; |
760 | 762 |
} |
761 | 763 |
check(n == num, "Wrong number"); |
762 | 764 |
|
763 | 765 |
} |
764 | 766 |
|
765 | 767 |
// Iterable value map |
766 | 768 |
{ |
767 | 769 |
typedef SmartGraph Graph; |
768 | 770 |
typedef SmartGraph::Node Item; |
769 | 771 |
typedef IterableValueMap<SmartGraph, SmartGraph::Node, double> Ivm; |
770 | 772 |
|
771 | 773 |
checkConcept<ReadWriteMap<Item, double>, Ivm>(); |
772 | 774 |
|
773 | 775 |
const int num = 10; |
774 | 776 |
Graph g; |
777 |
Ivm map0(g, 0.0); |
|
775 | 778 |
std::vector<Item> items; |
776 | 779 |
for (int i = 0; i < num; ++i) { |
777 | 780 |
items.push_back(g.addNode()); |
778 | 781 |
} |
779 | 782 |
|
780 | 783 |
Ivm map1(g, 0.0); |
781 | 784 |
check(distance(map1.beginValue(), map1.endValue()) == 1, "Wrong size"); |
782 | 785 |
check(*map1.beginValue() == 0.0, "Wrong value"); |
783 | 786 |
|
784 | 787 |
for (int i = 0; i < num; ++i) { |
785 | 788 |
map1.set(items[i], static_cast<double>(i)); |
786 | 789 |
} |
787 | 790 |
check(distance(map1.beginValue(), map1.endValue()) == num, "Wrong size"); |
788 | 791 |
|
789 | 792 |
for (int i = 0; i < num; ++i) { |
790 | 793 |
Ivm::ItemIt it(map1, static_cast<double>(i)); |
791 | 794 |
check(static_cast<Item>(it) == items[i], "Wrong value"); |
792 | 795 |
++it; |
793 | 796 |
check(static_cast<Item>(it) == INVALID, "Wrong value"); |
794 | 797 |
} |
795 | 798 |
|
796 | 799 |
for (Ivm::ValueIt vit = map1.beginValue(); |
797 | 800 |
vit != map1.endValue(); ++vit) { |
798 | 801 |
check(map1[static_cast<Item>(Ivm::ItemIt(map1, *vit))] == *vit, |
799 | 802 |
"Wrong ValueIt"); |
800 | 803 |
} |
801 | 804 |
|
802 | 805 |
for (int i = 0; i < num; ++i) { |
803 | 806 |
map1.set(items[i], static_cast<double>(i % 2)); |
804 | 807 |
} |
805 | 808 |
check(distance(map1.beginValue(), map1.endValue()) == 2, "Wrong size"); |
806 | 809 |
|
807 | 810 |
int n = 0; |
808 | 811 |
for (Ivm::ItemIt it(map1, 0.0); it != INVALID; ++it) { |
809 | 812 |
check(map1[static_cast<Item>(it)] == 0.0, "Wrong value"); |
810 | 813 |
++n; |
811 | 814 |
} |
812 | 815 |
check(n == (num + 1) / 2, "Wrong number"); |
813 | 816 |
|
814 | 817 |
for (Ivm::ItemIt it(map1, 1.0); it != INVALID; ++it) { |
815 | 818 |
check(map1[static_cast<Item>(it)] == 1.0, "Wrong value"); |
816 | 819 |
++n; |
817 | 820 |
} |
818 | 821 |
check(n == num, "Wrong number"); |
819 | 822 |
|
820 | 823 |
} |
821 | 824 |
|
822 | 825 |
// Graph map utilities: |
823 | 826 |
// mapMin(), mapMax(), mapMinValue(), mapMaxValue() |
824 | 827 |
// mapFind(), mapFindIf(), mapCount(), mapCountIf() |
825 | 828 |
// mapCopy(), mapCompare(), mapFill() |
826 | 829 |
{ |
827 | 830 |
DIGRAPH_TYPEDEFS(SmartDigraph); |
828 | 831 |
|
829 | 832 |
SmartDigraph g; |
830 | 833 |
Node n1 = g.addNode(); |
831 | 834 |
Node n2 = g.addNode(); |
832 | 835 |
Node n3 = g.addNode(); |
833 | 836 |
|
834 | 837 |
SmartDigraph::NodeMap<int> map1(g); |
835 | 838 |
SmartDigraph::ArcMap<char> map2(g); |
836 | 839 |
ConstMap<Node, A> cmap1 = A(); |
837 | 840 |
ConstMap<Arc, C> cmap2 = C(0); |
838 | 841 |
|
839 | 842 |
map1[n1] = 10; |
840 | 843 |
map1[n2] = 5; |
841 | 844 |
map1[n3] = 12; |
842 | 845 |
|
843 | 846 |
// mapMin(), mapMax(), mapMinValue(), mapMaxValue() |
844 | 847 |
check(mapMin(g, map1) == n2, "Wrong mapMin()"); |
845 | 848 |
check(mapMax(g, map1) == n3, "Wrong mapMax()"); |
846 | 849 |
check(mapMin(g, map1, std::greater<int>()) == n3, "Wrong mapMin()"); |
847 | 850 |
check(mapMax(g, map1, std::greater<int>()) == n2, "Wrong mapMax()"); |
848 | 851 |
check(mapMinValue(g, map1) == 5, "Wrong mapMinValue()"); |
849 | 852 |
check(mapMaxValue(g, map1) == 12, "Wrong mapMaxValue()"); |
850 | 853 |
|
851 | 854 |
check(mapMin(g, map2) == INVALID, "Wrong mapMin()"); |
852 | 855 |
check(mapMax(g, map2) == INVALID, "Wrong mapMax()"); |
853 | 856 |
|
854 | 857 |
check(mapMin(g, cmap1) != INVALID, "Wrong mapMin()"); |
855 | 858 |
check(mapMax(g, cmap2) == INVALID, "Wrong mapMax()"); |
856 | 859 |
|
857 | 860 |
Arc a1 = g.addArc(n1, n2); |
858 | 861 |
Arc a2 = g.addArc(n1, n3); |
859 | 862 |
Arc a3 = g.addArc(n2, n3); |
860 | 863 |
Arc a4 = g.addArc(n3, n1); |
861 | 864 |
|
862 | 865 |
map2[a1] = 'b'; |
863 | 866 |
map2[a2] = 'a'; |
864 | 867 |
map2[a3] = 'b'; |
865 | 868 |
map2[a4] = 'c'; |
866 | 869 |
|
867 | 870 |
// mapMin(), mapMax(), mapMinValue(), mapMaxValue() |
868 | 871 |
check(mapMin(g, map2) == a2, "Wrong mapMin()"); |
869 | 872 |
check(mapMax(g, map2) == a4, "Wrong mapMax()"); |
870 | 873 |
check(mapMin(g, map2, std::greater<int>()) == a4, "Wrong mapMin()"); |
871 | 874 |
check(mapMax(g, map2, std::greater<int>()) == a2, "Wrong mapMax()"); |
872 | 875 |
check(mapMinValue(g, map2, std::greater<int>()) == 'c', |
873 | 876 |
"Wrong mapMinValue()"); |
874 | 877 |
check(mapMaxValue(g, map2, std::greater<int>()) == 'a', |
875 | 878 |
"Wrong mapMaxValue()"); |
876 | 879 |
|
877 | 880 |
check(mapMin(g, cmap1) != INVALID, "Wrong mapMin()"); |
878 | 881 |
check(mapMax(g, cmap2) != INVALID, "Wrong mapMax()"); |
879 | 882 |
check(mapMaxValue(g, cmap2) == C(0), "Wrong mapMaxValue()"); |
880 | 883 |
|
881 | 884 |
check(mapMin(g, composeMap(functorToMap(&createC), map2)) == a2, |
882 | 885 |
"Wrong mapMin()"); |
883 | 886 |
check(mapMax(g, composeMap(functorToMap(&createC), map2)) == a4, |
884 | 887 |
"Wrong mapMax()"); |
885 | 888 |
check(mapMinValue(g, composeMap(functorToMap(&createC), map2)) == C('a'), |
886 | 889 |
"Wrong mapMinValue()"); |
887 | 890 |
check(mapMaxValue(g, composeMap(functorToMap(&createC), map2)) == C('c'), |
888 | 891 |
"Wrong mapMaxValue()"); |
889 | 892 |
|
890 | 893 |
// mapFind(), mapFindIf() |
891 | 894 |
check(mapFind(g, map1, 5) == n2, "Wrong mapFind()"); |
892 | 895 |
check(mapFind(g, map1, 6) == INVALID, "Wrong mapFind()"); |
893 | 896 |
check(mapFind(g, map2, 'a') == a2, "Wrong mapFind()"); |
894 | 897 |
check(mapFind(g, map2, 'e') == INVALID, "Wrong mapFind()"); |
895 | 898 |
check(mapFind(g, cmap2, C(0)) == ArcIt(g), "Wrong mapFind()"); |
896 | 899 |
check(mapFind(g, cmap2, C(1)) == INVALID, "Wrong mapFind()"); |
897 | 900 |
|
898 | 901 |
check(mapFindIf(g, map1, Less<int>(7)) == n2, |
899 | 902 |
"Wrong mapFindIf()"); |
900 | 903 |
check(mapFindIf(g, map1, Less<int>(5)) == INVALID, |
901 | 904 |
"Wrong mapFindIf()"); |
902 | 905 |
check(mapFindIf(g, map2, Less<char>('d')) == ArcIt(g), |
903 | 906 |
"Wrong mapFindIf()"); |
904 | 907 |
check(mapFindIf(g, map2, Less<char>('a')) == INVALID, |
905 | 908 |
"Wrong mapFindIf()"); |
906 | 909 |
|
907 | 910 |
// mapCount(), mapCountIf() |
908 | 911 |
check(mapCount(g, map1, 5) == 1, "Wrong mapCount()"); |
909 | 912 |
check(mapCount(g, map1, 6) == 0, "Wrong mapCount()"); |
910 | 913 |
check(mapCount(g, map2, 'a') == 1, "Wrong mapCount()"); |
911 | 914 |
check(mapCount(g, map2, 'b') == 2, "Wrong mapCount()"); |
912 | 915 |
check(mapCount(g, map2, 'e') == 0, "Wrong mapCount()"); |
913 | 916 |
check(mapCount(g, cmap2, C(0)) == 4, "Wrong mapCount()"); |
914 | 917 |
check(mapCount(g, cmap2, C(1)) == 0, "Wrong mapCount()"); |
915 | 918 |
|
916 | 919 |
check(mapCountIf(g, map1, Less<int>(11)) == 2, |
917 | 920 |
"Wrong mapCountIf()"); |
918 | 921 |
check(mapCountIf(g, map1, Less<int>(13)) == 3, |
919 | 922 |
"Wrong mapCountIf()"); |
920 | 923 |
check(mapCountIf(g, map1, Less<int>(5)) == 0, |
921 | 924 |
"Wrong mapCountIf()"); |
922 | 925 |
check(mapCountIf(g, map2, Less<char>('d')) == 4, |
923 | 926 |
"Wrong mapCountIf()"); |
924 | 927 |
check(mapCountIf(g, map2, Less<char>('c')) == 3, |
925 | 928 |
"Wrong mapCountIf()"); |
926 | 929 |
check(mapCountIf(g, map2, Less<char>('a')) == 0, |
927 | 930 |
"Wrong mapCountIf()"); |
928 | 931 |
|
929 | 932 |
// MapIt, ConstMapIt |
930 | 933 |
/* |
931 | 934 |
These tests can be used after applying bugfix #330 |
932 | 935 |
typedef SmartDigraph::NodeMap<int>::MapIt MapIt; |
933 | 936 |
typedef SmartDigraph::NodeMap<int>::ConstMapIt ConstMapIt; |
934 | 937 |
check(*std::min_element(MapIt(map1), MapIt(INVALID)) == 5, |
935 | 938 |
"Wrong NodeMap<>::MapIt"); |
936 | 939 |
check(*std::max_element(ConstMapIt(map1), ConstMapIt(INVALID)) == 12, |
937 | 940 |
"Wrong NodeMap<>::MapIt"); |
938 | 941 |
|
939 | 942 |
int sum = 0; |
940 | 943 |
std::for_each(MapIt(map1), MapIt(INVALID), Sum<int>(sum)); |
941 | 944 |
check(sum == 27, "Wrong NodeMap<>::MapIt"); |
942 | 945 |
std::for_each(ConstMapIt(map1), ConstMapIt(INVALID), Sum<int>(sum)); |
943 | 946 |
check(sum == 54, "Wrong NodeMap<>::ConstMapIt"); |
944 | 947 |
*/ |
945 | 948 |
|
946 | 949 |
// mapCopy(), mapCompare(), mapFill() |
947 | 950 |
check(mapCompare(g, map1, map1), "Wrong mapCompare()"); |
948 | 951 |
check(mapCompare(g, cmap2, cmap2), "Wrong mapCompare()"); |
949 | 952 |
check(mapCompare(g, map1, shiftMap(map1, 0)), "Wrong mapCompare()"); |
950 | 953 |
check(mapCompare(g, map2, scaleMap(map2, 1)), "Wrong mapCompare()"); |
951 | 954 |
check(!mapCompare(g, map1, shiftMap(map1, 1)), "Wrong mapCompare()"); |
952 | 955 |
|
953 | 956 |
SmartDigraph::NodeMap<int> map3(g, 0); |
954 | 957 |
SmartDigraph::ArcMap<char> map4(g, 'a'); |
955 | 958 |
|
956 | 959 |
check(!mapCompare(g, map1, map3), "Wrong mapCompare()"); |
957 | 960 |
check(!mapCompare(g, map2, map4), "Wrong mapCompare()"); |
958 | 961 |
|
959 | 962 |
mapCopy(g, map1, map3); |
960 | 963 |
mapCopy(g, map2, map4); |
961 | 964 |
|
962 | 965 |
check(mapCompare(g, map1, map3), "Wrong mapCompare() or mapCopy()"); |
963 | 966 |
check(mapCompare(g, map2, map4), "Wrong mapCompare() or mapCopy()"); |
964 | 967 |
|
965 | 968 |
Undirector<SmartDigraph> ug(g); |
966 | 969 |
Undirector<SmartDigraph>::EdgeMap<char> umap1(ug, 'x'); |
967 | 970 |
Undirector<SmartDigraph>::ArcMap<double> umap2(ug, 3.14); |
968 | 971 |
|
969 | 972 |
check(!mapCompare(g, map2, umap1), "Wrong mapCompare() or mapCopy()"); |
970 | 973 |
check(!mapCompare(g, umap1, map2), "Wrong mapCompare() or mapCopy()"); |
971 | 974 |
check(!mapCompare(ug, map2, umap1), "Wrong mapCompare() or mapCopy()"); |
972 | 975 |
check(!mapCompare(ug, umap1, map2), "Wrong mapCompare() or mapCopy()"); |
973 | 976 |
|
974 | 977 |
mapCopy(g, map2, umap1); |
975 | 978 |
|
976 | 979 |
check(mapCompare(g, map2, umap1), "Wrong mapCompare() or mapCopy()"); |
977 | 980 |
check(mapCompare(g, umap1, map2), "Wrong mapCompare() or mapCopy()"); |
978 | 981 |
check(mapCompare(ug, map2, umap1), "Wrong mapCompare() or mapCopy()"); |
979 | 982 |
check(mapCompare(ug, umap1, map2), "Wrong mapCompare() or mapCopy()"); |
980 | 983 |
|
981 | 984 |
mapCopy(g, map2, umap1); |
982 | 985 |
mapCopy(g, umap1, map2); |
983 | 986 |
mapCopy(ug, map2, umap1); |
984 | 987 |
mapCopy(ug, umap1, map2); |
985 | 988 |
|
986 | 989 |
check(!mapCompare(ug, umap1, umap2), "Wrong mapCompare() or mapCopy()"); |
987 | 990 |
mapCopy(ug, umap1, umap2); |
988 | 991 |
check(mapCompare(ug, umap1, umap2), "Wrong mapCompare() or mapCopy()"); |
989 | 992 |
|
990 | 993 |
check(!mapCompare(g, map1, constMap<Node>(2)), "Wrong mapCompare()"); |
991 | 994 |
mapFill(g, map1, 2); |
992 | 995 |
check(mapCompare(g, constMap<Node>(2), map1), "Wrong mapFill()"); |
993 | 996 |
|
994 | 997 |
check(!mapCompare(g, map2, constMap<Arc>('z')), "Wrong mapCompare()"); |
995 | 998 |
mapCopy(g, constMap<Arc>('z'), map2); |
996 | 999 |
check(mapCompare(g, constMap<Arc>('z'), map2), "Wrong mapCopy()"); |
997 | 1000 |
} |
998 | 1001 |
|
999 | 1002 |
return 0; |
1000 | 1003 |
} |
0 comments (0 inline)