This repository has been archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vecpick.h
297 lines (245 loc) · 10.1 KB
/
vecpick.h
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/***************************************************************************
* blitz/vecpick.h Declaration of the VectorPick<T_numtype> class
*
* $Id: vecpick.h,v 1.5 2005/10/06 23:28:55 julianc Exp $
*
* Copyright (C) 1997-2001 Todd Veldhuizen <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Suggestions: [email protected]
* Bugs: [email protected]
*
* For more information, please see the Blitz++ Home Page:
* http://oonumerics.org/blitz/
*
***************************************************************************/
#ifndef BZ_VECPICK_H
#define BZ_VECPICK_H
#include <blitz/vector.h>
BZ_NAMESPACE(blitz)
// Forward declarations
template<typename P_numtype> class VectorPickIter;
template<typename P_numtype> class VectorPickIterConst;
// Declaration of class VectorPick<P_numtype>
template<typename P_numtype>
class VectorPick {
public:
//////////////////////////////////////////////
// Public Types
//////////////////////////////////////////////
typedef P_numtype T_numtype;
typedef Vector<T_numtype> T_vector;
typedef Vector<int> T_indexVector;
typedef VectorPick<T_numtype> T_pick;
typedef VectorPickIter<T_numtype> T_iterator;
typedef VectorPickIterConst<T_numtype> T_constIterator;
//////////////////////////////////////////////
// Constructors //
//////////////////////////////////////////////
VectorPick(T_vector& vector, T_indexVector& indexarg)
: vector_(vector), index_(indexarg)
{ }
VectorPick(const T_pick& vecpick)
: vector_(const_cast<T_vector&>(vecpick.vector_)),
index_(const_cast<T_indexVector&>(vecpick.index_))
{ }
VectorPick(T_pick& vecpick, Range r)
: vector_(vecpick.vector_), index_(vecpick.index_[r])
{ }
//////////////////////////////////////////////
// Member functions
//////////////////////////////////////////////
T_iterator beginFast()
{ return VectorPickIter<T_numtype>(*this); }
T_constIterator beginFast() const
{ return VectorPickIterConst<T_numtype>(*this); }
// T_vector copy() const;
// T_iterator end();
// T_constIterator end() const;
T_indexVector& indexSet()
{ return index_; }
const T_indexVector& indexSet() const
{ return index_; }
int length() const
{ return index_.length(); }
void setVector(Vector<T_numtype>& x)
{ vector_.reference(x); }
void setIndex(Vector<int>& index)
{ index_.reference(index); }
T_vector& vector()
{ return vector_; }
const T_vector& vector() const
{ return vector_; }
/////////////////////////////////////////////
// Library-internal member functions
// These are undocumented and may change or
// disappear in future releases.
/////////////////////////////////////////////
int _bz_suggestLength() const
{ return index_.length(); }
bool _bz_hasFastAccess() const
{ return vector_._bz_hasFastAccess() && index_._bz_hasFastAccess(); }
T_numtype& _bz_fastAccess(int i)
{ return vector_._bz_fastAccess(index_._bz_fastAccess(i)); }
T_numtype _bz_fastAccess(int i) const
{ return vector_._bz_fastAccess(index_._bz_fastAccess(i)); }
_bz_VecExpr<T_constIterator> _bz_asVecExpr() const
{ return _bz_VecExpr<T_constIterator>(beginFast()); }
//////////////////////////////////////////////
// Subscripting operators
//////////////////////////////////////////////
T_numtype operator()(int i) const
{
BZPRECONDITION(index_.stride() == 1);
BZPRECONDITION(vector_.stride() == 1);
BZPRECONDITION(i < index_.length());
BZPRECONDITION(index_[i] < vector_.length());
return vector_(index_(i));
}
T_numtype& operator()(int i)
{
BZPRECONDITION(index_.stride() == 1);
BZPRECONDITION(vector_.stride() == 1);
BZPRECONDITION(i < index_.length());
BZPRECONDITION(index_[i] < vector_.length());
return vector_(index_(i));
}
T_numtype operator[](int i) const
{
BZPRECONDITION(index_.stride() == 1);
BZPRECONDITION(vector_.stride() == 1);
BZPRECONDITION(i < index_.length());
BZPRECONDITION(index_[i] < vector_.length());
return vector_[index_[i]];
}
T_numtype& operator[](int i)
{
BZPRECONDITION(index_.stride() == 1);
BZPRECONDITION(vector_.stride() == 1);
BZPRECONDITION(i < index_.length());
BZPRECONDITION(index_[i] < vector_.length());
return vector_[index_[i]];
}
T_pick operator()(Range r)
{
return T_pick(*this, index_[r]);
}
T_pick operator[](Range r)
{
return T_pick(*this, index_[r]);
}
//////////////////////////////////////////////
// Assignment operators
//////////////////////////////////////////////
// Scalar operand
T_pick& operator=(T_numtype);
T_pick& operator+=(T_numtype);
T_pick& operator-=(T_numtype);
T_pick& operator*=(T_numtype);
T_pick& operator/=(T_numtype);
T_pick& operator%=(T_numtype);
T_pick& operator^=(T_numtype);
T_pick& operator&=(T_numtype);
T_pick& operator|=(T_numtype);
T_pick& operator>>=(int);
T_pick& operator<<=(int);
// Vector operand
template<typename P_numtype2> T_pick& operator=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator+=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator-=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator*=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator/=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator%=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator^=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator&=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator|=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator>>=(const Vector<P_numtype2> &);
template<typename P_numtype2> T_pick& operator<<=(const Vector<P_numtype2> &);
// Vector expression operand
template<typename P_expr> T_pick& operator=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator+=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator-=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator*=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator/=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator%=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator^=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator&=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator|=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator>>=(_bz_VecExpr<P_expr>);
template<typename P_expr> T_pick& operator<<=(_bz_VecExpr<P_expr>);
// Range operand
T_pick& operator=(Range);
T_pick& operator+=(Range);
T_pick& operator-=(Range);
T_pick& operator*=(Range);
T_pick& operator/=(Range);
T_pick& operator%=(Range);
T_pick& operator^=(Range);
T_pick& operator&=(Range);
T_pick& operator|=(Range);
T_pick& operator>>=(Range);
T_pick& operator<<=(Range);
// Vector pick operand
template<typename P_numtype2>
T_pick& operator=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator+=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator-=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator*=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator/=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator%=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator^=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator&=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator|=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator>>=(const VectorPick<P_numtype2> &);
template<typename P_numtype2>
T_pick& operator<<=(const VectorPick<P_numtype2> &);
// Random operand
template<typename P_distribution>
T_pick& operator=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator+=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator-=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator*=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator/=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator%=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator^=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator&=(Random<P_distribution>& random);
template<typename P_distribution>
T_pick& operator|=(Random<P_distribution>& random);
private:
VectorPick() { }
template<typename P_expr, typename P_updater>
inline void _bz_assign(P_expr, P_updater);
private:
T_vector vector_;
T_indexVector index_;
};
BZ_NAMESPACE_END
#include <blitz/vecpick.cc>
#include <blitz/vecpickio.cc>
#include <blitz/vecpickiter.h>
#endif // BZ_VECPICK_H