File: RSVertex.C

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 239,848 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 93
file content (154 lines) | stat: -rw-r--r-- 2,511 bytes parent folder | download | duplicates (4)
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
154
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#include <BALL/STRUCTURE/RSEdge.h>
#include <BALL/STRUCTURE/RSFace.h>
#include <BALL/STRUCTURE/RSVertex.h>

namespace BALL
{

	RSVertex::RSVertex()
		
		:	GraphVertex< RSVertex,RSEdge,RSFace >(),
			atom_(-1)
	{
	}


	RSVertex::RSVertex(const RSVertex& rsvertex, bool deep)
		
		:	GraphVertex< RSVertex,RSEdge,RSFace >(rsvertex,deep),
			atom_(rsvertex.atom_)
	{
	}


	RSVertex::RSVertex(Index atom)
		
		:	GraphVertex< RSVertex,RSEdge,RSFace >(),
			atom_(atom)
	{
	}


	RSVertex::~RSVertex()
		
	{
	}


	void RSVertex::set(const RSVertex& rsvertex, bool deep)
		
	{
		if (this != &rsvertex)
		{
			GraphVertex< RSVertex,RSEdge,RSFace >::set(rsvertex,deep);
			atom_ = rsvertex.atom_;
		}
	}


	RSVertex& RSVertex::operator = (const RSVertex& rsvertex)
		
	{
		if (this != &rsvertex)
		{
			GraphVertex< RSVertex,RSEdge,RSFace >::operator = (rsvertex);
			atom_ = rsvertex.atom_;
		}
		return *this;
	}


	void RSVertex::setAtom(Index atom)
		
	{
		atom_ = atom;
	}


	Index RSVertex::getAtom() const
		
	{
		return atom_;
	}


	bool RSVertex::operator == (const RSVertex& rsvertex) const
		
	{
		if (atom_ != rsvertex.atom_)
		{
			return false;
		}
		HashSet<RSEdge*>::ConstIterator e;
		for (e = edges_.begin(); e != edges_.end(); e++)
		{
			if (!rsvertex.edges_.has(*e))
			{
				return false;
			}
		}
		for (e = rsvertex.edges_.begin(); e != rsvertex.edges_.end(); e++)
		{
			if (!edges_.has(*e))
			{
				return false;
			}
		}
		HashSet<RSFace*>::ConstIterator f;
		for (f = faces_.begin(); f != faces_.end(); f++)
		{
			if (!rsvertex.faces_.has(*f))
			{
				return false;
			}
		}
		for (f = rsvertex.faces_.begin(); f != rsvertex.faces_.end(); f++)
		{
			if (!faces_.has(*f))
			{
				return false;
			}
		}
		return true;
	}


	bool RSVertex::operator != (const RSVertex& rsvertex) const
		
	{
		return ( ! (*this == rsvertex) );
	}


	bool RSVertex::operator *= (const RSVertex& rsvertex) const
		
	{
		return (atom_ == rsvertex.atom_);
	}


	std::ostream& operator << (std::ostream& s, const RSVertex& rsvertex)
	{
		s << "RSVERTEX" << rsvertex.getIndex() << "("
			<< rsvertex.getAtom() << " [";
		RSVertex::ConstEdgeIterator e;
		for (e = rsvertex.beginEdge(); e != rsvertex.endEdge(); e++)
		{
			s << (*e)->getIndex() << ' ';
		}
		s << "] [";
		RSVertex::ConstFaceIterator f;
		for (f = rsvertex.beginFace(); f != rsvertex.endFace(); f++)
		{
			s << (*f)->getIndex() << ' ';
		}
		s << "])";
		return s;
	}


} // namespace BALL