/usr/include/boost/graph/detail
NameSizeModeActions
adjacency_list.hpp1060900644editdlrm
adj_list_edge_iterator.hpp39870644editdlrm
array_binary_tree.hpp70150644editdlrm
augment.hpp22930644editdlrm
compressed_sparse_row_struct.hpp301000644editdlrm
connected_components.hpp67160644editdlrm
d_ary_heap.hpp122550644editdlrm
edge.hpp35500644editdlrm
empty_header.hpp3830644editdlrm
geodesic.hpp48250644editdlrm
histogram_sort.hpp130200644editdlrm
incidence_iterator.hpp26810644editdlrm
incremental_components.hpp31870644editdlrm
index.hpp26230644editdlrm
indexed_properties.hpp94200644editdlrm
is_distributed_selector.hpp8550644editdlrm
labeled_graph_traits.hpp66180644editdlrm
list_base.hpp56140644editdlrm
mpi_include.hpp5360644editdlrm
permutation.hpp60200644editdlrm
read_graphviz_new.hpp35550644editdlrm
read_graphviz_spirit.hpp280190644editdlrm
self_avoiding_walk.hpp158560644editdlrm
set_adaptor.hpp30920644editdlrm
shadow_iterator.hpp54970644editdlrm
sparse_ordering.hpp63450644editdlrm
Edit: /usr/include/boost/graph/detail/incremental_components.hpp (3187B)
//======================================================================= // Copyright 2002 Indiana University. // Copyright 2009 Trustees of Indiana University. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek, Michael Hansen // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) //======================================================================= #ifndef BOOST_GRAPH_DETAIL_INCREMENTAL_COMPONENTS_HPP #define BOOST_GRAPH_DETAIL_INCREMENTAL_COMPONENTS_HPP #include namespace boost { namespace detail { // Iterator for a component index linked list. The contents of // each array element represent the next index in the list. A // special value (the maximum index + 1) is used to terminate a // list. template < typename IndexRandomAccessIterator > class component_index_iterator : boost::forward_iterator_helper< component_index_iterator< IndexRandomAccessIterator >, typename std::iterator_traits< IndexRandomAccessIterator >::value_type, typename std::iterator_traits< IndexRandomAccessIterator >::difference_type, typename std::iterator_traits< IndexRandomAccessIterator >::pointer, typename std::iterator_traits< IndexRandomAccessIterator >::reference > { private: typedef component_index_iterator< IndexRandomAccessIterator > self; public: typedef std::forward_iterator_tag iterator_category; typedef typename std::iterator_traits< IndexRandomAccessIterator >::value_type value_type; typedef typename std::iterator_traits< IndexRandomAccessIterator >::difference_type reference; typedef typename std::iterator_traits< IndexRandomAccessIterator >::pointer pointer; typedef typename std::iterator_traits< IndexRandomAccessIterator >::reference difference_type; // Constructor for "begin" iterator component_index_iterator( IndexRandomAccessIterator index_iterator, value_type begin_index) : m_index_iterator(index_iterator), m_current_index(begin_index) { } // Constructor for "end" iterator (end_index should be the linked // list terminator). component_index_iterator(value_type end_index) : m_current_index(end_index) { } inline value_type operator*() const { return (m_current_index); } self& operator++() { // Move to the next element in the linked list m_current_index = m_index_iterator[m_current_index]; return (*this); } bool operator==(const self& other_iterator) const { return (m_current_index == *other_iterator); } protected: IndexRandomAccessIterator m_index_iterator; value_type m_current_index; }; // class component_index_iterator } // namespace detail } // namespace detail #endif // BOOST_GRAPH_DETAIL_INCREMENTAL_COMPONENTS_HPP