summaryrefslogtreecommitdiff
path: root/src/Skeleton_blocker/include/gudhi/Skeleton_blocker/iterators/Skeleton_blockers_edges_iterators.h
blob: 82025a1cd48a9415f2d88eac3742112379f9b37f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
 * Skeleton_blockers_iterators_out.h
 *
 *  Created on: Aug 25, 2014
 *      Author: dsalinas
 */

#ifndef GUDHI_SKELETON_BLOCKERS_ITERATORS_EDGES_H_
#define GUDHI_SKELETON_BLOCKERS_ITERATORS_EDGES_H_

#include "boost/iterator/iterator_facade.hpp"


namespace Gudhi{

namespace skbl {

template<typename SkeletonBlockerComplex>
class Complex_edge_around_vertex_iterator :
 public boost::iterator_facade < Complex_edge_around_vertex_iterator<SkeletonBlockerComplex>
		, typename SkeletonBlockerComplex::Edge_handle const
		, boost::forward_traversal_tag
		, typename SkeletonBlockerComplex::Edge_handle const
		>
{
	friend class boost::iterator_core_access;

	typedef SkeletonBlockerComplex Complex;
	typedef typename Complex::boost_adjacency_iterator boost_adjacency_iterator;
	typedef typename Complex::Vertex_handle Vertex_handle;
	typedef typename Complex::Edge_handle Edge_handle;

private:

	const Complex* complex;
	Vertex_handle v;

	boost_adjacency_iterator current_;
	boost_adjacency_iterator end_;

public:

	Complex_edge_around_vertex_iterator():complex(NULL){
	}

	Complex_edge_around_vertex_iterator(const Complex* complex_,Vertex_handle v_):
		complex(complex_),
		v(v_)
	{
		tie(current_,end_) = adjacent_vertices(v.vertex, complex->skeleton);
	}

	/**
	 * returns an iterator to the end
	 */
	Complex_edge_around_vertex_iterator(const Complex* complex_,Vertex_handle v_,int end):
		complex(complex_),
		v(v_)
	{
		tie(current_,end_) = adjacent_vertices(v.vertex, complex->skeleton);
		set_end();
	}

	bool equal(const Complex_edge_around_vertex_iterator& other) const{
		return (complex== other.complex) && (v == other.v) && (current_ == other.current_) && (end_ == other.end_);
	}

	void increment(){
		if(current_ != end_)
			++current_;
	}

	Edge_handle dereference() const{
		return *(*complex)[std::make_pair(v,*current_)];
	}

private:
	//remove this ugly hack
	void set_end(){
		current_ = end_;
	}
};



/**
 *@brief Iterator on the edges of a simplicial complex.
 *
 */
template<typename SkeletonBlockerComplex>
class Complex_edge_iterator :
public boost::iterator_facade < Complex_edge_iterator<SkeletonBlockerComplex>
, typename SkeletonBlockerComplex::Edge_handle const
, boost::forward_traversal_tag
, typename SkeletonBlockerComplex::Edge_handle const
>

{
	friend class boost::iterator_core_access;
public:
	typedef SkeletonBlockerComplex Complex;
	typedef typename Complex::boost_edge_iterator boost_edge_iterator;
	typedef typename Complex::Edge_handle Edge_handle;


	const Complex* complex;
	std::pair<boost_edge_iterator,boost_edge_iterator> edge_iterator ;

	Complex_edge_iterator():complex(NULL){
	}

	Complex_edge_iterator(const SkeletonBlockerComplex* complex_):
		complex(complex_),
		edge_iterator(boost::edges(complex_->skeleton))
	{
	}

	/**
	 * return an iterator to the end
	 */
	Complex_edge_iterator(const SkeletonBlockerComplex* complex_,int end):
		complex(complex_),
		edge_iterator(boost::edges(complex_->skeleton))
	{
		edge_iterator.first = edge_iterator.second;
	}


	bool equal(const Complex_edge_iterator& other) const{
		return (complex == other.complex) && (edge_iterator == other.edge_iterator);
	}

	void increment(){
		if(edge_iterator.first != edge_iterator.second){
			++(edge_iterator.first);
		}
	}

	Edge_handle dereference() const{
		return(*(edge_iterator.first));
	}
};



}

} // namespace GUDHI


#endif /* GUDHI_SKELETON_BLOCKERS_ITERATORS_EDGES_H_ */