equal
deleted
inserted
replaced
1090 /// This map returns the out-degree of a node. Once it is constructed, |
1090 /// This map returns the out-degree of a node. Once it is constructed, |
1091 /// the degrees are stored in a standard NodeMap, so each query is done |
1091 /// the degrees are stored in a standard NodeMap, so each query is done |
1092 /// in constant time. On the other hand, the values are updated automatically |
1092 /// in constant time. On the other hand, the values are updated automatically |
1093 /// whenever the graph changes. |
1093 /// whenever the graph changes. |
1094 /// |
1094 /// |
1095 /// \sa OutDegMap |
1095 /// \sa InDegMap |
1096 |
1096 |
1097 template <typename _Graph> |
1097 template <typename _Graph> |
1098 class OutDegMap |
1098 class OutDegMap |
1099 : protected AlterationNotifier<typename _Graph::Edge>::ObserverBase { |
1099 : protected AlterationNotifier<typename _Graph::Edge>::ObserverBase { |
1100 |
1100 |