MADNESS 0.10.1
key.h
Go to the documentation of this file.
1/*
2 This file is part of MADNESS.
3
4 Copyright (C) 2007,2010 Oak Ridge National Laboratory
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 For more information please contact:
21
22 Robert J. Harrison
23 Oak Ridge National Laboratory
24 One Bethel Valley Road
25 P.O. Box 2008, MS-6367
26
27 email: harrisonrj@ornl.gov
28 tel: 865-241-3937
29 fax: 865-572-0680
30*/
31
32#ifndef MADNESS_MRA_KEY_H__INCLUDED
33#define MADNESS_MRA_KEY_H__INCLUDED
34
35/// \file key.h
36/// \brief Multidimension Key for MRA tree and associated iterators
37
38#include <madness/mra/bc.h>
39#include <madness/mra/power.h>
43
44#include <climits> // CHAR_BIT
45#include <cstdint>
46#include <vector>
47
48namespace madness {
49
50 // // this has problems when nproc is a large-ish power of 2 such as 256
51 // // and leads to bad data distribution.
52 // static inline unsigned int sdbm(int n, const unsigned char* c, unsigned int sum=0) {
53 // for (int i=0; i<n; ++i) sum = c[i] + (sum << 6) + (sum << 16) - sum;
54 // return sum;
55 // }
56
57 typedef int64_t Translation;
58 typedef int Level;
59
60 template<std::size_t NDIM>
61 class KeyChildIterator;
62
63 /// Key is the index for a node of the 2^NDIM-tree
64
65 /// See KeyChildIterator for facile generation of children,
66 /// and foreach_child(parent,op) for facile application of operators
67 /// to child keys.
68 template<std::size_t NDIM>
69 class Key {
70 public:
71// static const typename Vector<Translation,NDIM>::size_type static_size = Vector<Translation,NDIM>::static_size;
72 static const std::size_t static_size = NDIM;
73
74 private:
75 friend class KeyChildIterator<NDIM> ;
79
80
81 public:
82
83 /// Default constructor makes an \em uninitialized key
84 Key() {}
85
86 /// Constructor with given n, l
88 {
89 MADNESS_ASSERT(n >= 0 && n < sizeof(Translation)*CHAR_BIT);
90 rehash();
91 }
92
93 /// Constructor with given n and l=0
94 Key(int n) : n(n), l(0)
95 {
96 MADNESS_ASSERT(n >= 0 && n < sizeof(Translation)*CHAR_BIT);
97 rehash();
98 }
99
100 // /// easy constructor ... UGH !!!!!!!!!!!!!!!!!!!!!!
101 // Key(const int n, const int l0, const int l1, const int l2) : n(n) {
102 // MADNESS_ASSERT(NDIM==3);
103 // l=Vector<Translation, NDIM>(0);
104 // l[0]=l0; l[1]=l1; l[2]=l2;
105 // rehash();
106 // }
107
108 /// Returns an invalid key
110 Key<NDIM> result;
111 result.n = -1;
112 result.l = 0;
113 result.rehash();
114 return result;
115 }
116
117 /// Checks if a key is invalid
118 bool is_invalid() const {
119 return n == -1;
120 }
121
122 /// Checks if a key is valid
123 bool is_valid() const {
124 return n != -1;
125 }
126
127 /// Equality test
128 bool operator==(const Key& other) const {
129 if (hashval != other.hashval) return false;
130 if (n != other.n) return false;
131 for (unsigned int i=0; i<NDIM; i++)
132 if (l[i] != other.l[i]) return false;
133 return true; // everything is equal
134 }
135
136 bool operator!=(const Key& other) const {
137 return !(*this == other);
138 }
139
140 /// Comparison operator less than to enable storage in STL map
141 bool operator<(const Key& other) const {
142 if (hashval < other.hashval) return true;
143 if (hashval > other.hashval) return false;
144
145 if (n < other.n) return true;
146 if (n > other.n) return false;
147
148 for (unsigned int i=0; i<NDIM; i++) {
149 if (l[i] < other.l[i]) return true;
150 if (l[i] > other.l[i]) return false;
151 }
152
153 return false; // everything is equal
154 }
155
156 inline hashT
157 hash() const {
158 return hashval;
159 }
160
161 // template<typename Archive>
162 // inline void
163 // serialize(Archive& ar) {
164 // ar & archive::wrap((unsigned char*) this, sizeof(*this));
165 // }
166
167 Level
168 level() const {
169 return n;
170 }
171
173 translation() const {
174 return l;
175 }
176
177 /// const accessor to elements of this->translation()
178 const Translation& operator[](std::size_t d) const {
179 return l[d];
180 }
181
182 uint64_t
183 distsq() const {
184 uint64_t dist = 0;
185 for (std::size_t d = 0; d < NDIM; ++d) {
186 dist += l[d] * l[d];
187 }
188 return dist;
189 }
190
191 /// like distsq() but accounts for periodicity
192 uint64_t
193 distsq_bc(const array_of_bools<NDIM>& is_periodic) const {
194 const Translation twonm1 = (Translation(1) << level()) >> 1;
195
196 uint64_t dsq = 0;
197 for (std::size_t d = 0; d < NDIM; ++d) {
198 Translation la = translation()[d];
199 if (is_periodic[d]) {
200 if (la > twonm1) {
201 la -= twonm1 * 2;
202 MADNESS_ASSERT(la <= twonm1);
203 }
204 if (la < -twonm1) {
205 la += twonm1 * 2;
206 MADNESS_ASSERT(la >= -twonm1);
207 }
208 }
209 dsq += la * la;
210 }
211
212 return dsq;
213 }
214
215 /// like "periodic" distsq() but only selects the prescribed axes
216 template <std::size_t NDIM2>
217 std::enable_if_t<NDIM >= NDIM2, uint64_t>
218 distsq_bc(const array_of_bools<NDIM>& is_periodic, const std::array<std::size_t, NDIM2>& axes) const {
219 const Translation twonm1 = (Translation(1) << level()) >> 1;
220
221 uint64_t dsq = 0;
222 for (std::size_t a = 0; a < NDIM2; ++a) {
223 const auto d = axes[a];
225 Translation la = translation()[d];
226 if (is_periodic[d]) {
227 if (la > twonm1) {
228 la -= twonm1 * 2;
229 MADNESS_ASSERT(la <= twonm1);
230 }
231 if (la < -twonm1) {
232 la += twonm1 * 2;
233 MADNESS_ASSERT(la >= -twonm1);
234 }
235 }
236 dsq += la * la;
237 }
238
239 return dsq;
240 }
241
242 /// Returns the key of the parent
243
244 /// Default is the immediate parent (generation=1). To get
245 /// the grandparent use generation=2, and similarly for
246 /// great-grandparents.
247 ///
248 /// !! If there is no such parent it quietly returns the
249 /// closest match (which may be self if this is the top of the
250 /// tree).
251 Key
252 parent(int generation = 1) const {
254 if (generation > n)
255 generation = n;
256 for (std::size_t i = 0; i < NDIM; ++i)
257 pl[i] = l[i] >> generation;
258 return Key(n - generation, pl);
259 }
260
261
262 bool
263 is_child_of(const Key& key) const {
264 if (this->n < key.n) {
265 return false; // I can't be child of something lower on the tree
266 }
267 else if (this->n == key.n) {
268 return (*this == key); // I am child of myself
269 }
270 else {
271 Level dn = this->n - key.n;
272 Key mama = this->parent(dn);
273 return (mama == key);
274 }
275 }
276
277
278 bool
279 is_parent_of(const Key& key) const {
280 return (key.is_child_of(*this));
281 }
282
283 /// Assuming keys are at the same level, returns true if displaced by no more than 1 in any direction
284
285 /// Assumes key and this are at the same level
286 bool
287 is_neighbor_of(const Key& key, const array_of_bools<NDIM>& bperiodic) const {
288 Translation dist = 0;
289 Translation TWON1 = (Translation(1)<<n) - 1;
290 for (std::size_t i=0; i<NDIM; ++i)
291 {
292 Translation ll = std::abs(l[i] - key.l[i]);
293 if (bperiodic[i] && ll==TWON1) ll=1;
294 dist = std::max(dist, ll);
295 }
296 return (dist <= 1);
297 }
298
299 /// given a displacement, generate a neighbor key; ignore boundary conditions and disp's level
300
301 /// @param[in] disp the displacement
302 /// @return a new key
303 Key neighbor(const Key<NDIM>& disp) const {
305 return Key(this->level(),l);
306 }
307
308 /// given a displacement, generate a neighbor key; ignore boundary conditions and disp's level
309
310 /// @param[in] disp the displacement
311 /// @return a new key
314 return Key(this->level(),l);
315 }
316
317
318 /// check if this MultiIndex contains point x, disregarding these two dimensions
319 bool thisKeyContains(const Vector<double,NDIM>& x, const unsigned int& dim0,
320 const unsigned int& dim1) const {
321
322 // it's sufficient if one single dimension is out
323 bool contains=true;
324 const double twotoN = std::pow(2.0,double(n));
325 MADNESS_ASSERT(dim0<NDIM and dim1<NDIM);
326
327 for (unsigned int i=0; i<NDIM; i++ ) {
328
329 // check bounds
330 MADNESS_ASSERT((x[i]>=0.0) and (x[i]<=1.0));
331
332 // leave these two dimensions out
333 if ((i==dim0) or (i==dim1)) continue;
334
335 const int ll=int (x[i]*twotoN);
336 if (not (l[i]==ll)) contains=false;
337 }
338 return contains;
339 }
340
341 /// break key into two low-dimensional keys
342 template<std::size_t LDIM, std::size_t KDIM>
343 void break_apart(Key<LDIM>& key1, Key<KDIM>& key2) const {
344
345 // if LDIM==NDIM the 2nd key will be constructed empty
346 MADNESS_ASSERT((LDIM+KDIM==NDIM) or (LDIM==NDIM));
349 for (int i=0; i<static_cast<int>(LDIM); ++i) {
350 l1[i]=l[i];
351 }
352MADNESS_PRAGMA_GCC(diagnostic push)
353MADNESS_PRAGMA_GCC(diagnostic ignored "-Waggressive-loop-optimizations")
354 for (size_t i=LDIM; i<NDIM; ++i) {
355 l2[i-LDIM]=l[i];
356 }
357MADNESS_PRAGMA_GCC(diagnostic pop)
358
359 key1=Key<LDIM>(n,l1);
360 key2=Key<KDIM>(n,l2);
361 }
362
363 /// extract a new key consisting of first VDIM dimensions of this
364 template<std::size_t VDIM>
366 static_assert(VDIM <= NDIM, "VDIM must be less than or equal to NDIM");
368 for (int i = 0; i < VDIM; ++i) t[i] = this->translation()[i];
369 return Key<VDIM>(this->level(),t);
370 }
371
372 /// extract a new key consisting of last VDIM dimensions of this
373 template<std::size_t VDIM>
375 static_assert(VDIM <= NDIM, "VDIM must be less than or equal to NDIM");
377 for (int i = 0; i < VDIM; ++i) t[i] = this->translation()[NDIM-VDIM+i];
378 return Key<VDIM>(this->level(),t);
379 }
380
381 /// extract a new key with the Translations indicated in the v array
382 template<std::size_t VDIM>
383 Key<VDIM> extract_key(const std::array<int,VDIM>& v) const {
385 for (int i = 0; i < VDIM; ++i) t[i] = this->translation()[v[i]];
386 return Key<VDIM>(this->level(),t);
387 };
388
389 /// extract a new key with the Translations complementary to the ones indicated in the v array
390 template<std::size_t VDIM>
391 Key<NDIM-VDIM> extract_complement_key(const std::array<int,VDIM>& v) const {
392
393 // return the complement of v, e.g. v={0,1}, v_complement={2,3,4} if NDIM==5
394 // v must be contiguous and ascending (i.e. 1,2,3 or 2,3,4)
395 auto v_complement = [](const std::array<int, VDIM>& v) {
396 std::array<int, NDIM - VDIM> result;
397 for (std::size_t i = 0; i < NDIM - VDIM; i++) result[i] = (v.back() + i + 1) % NDIM;
398 return result;
399 };
400 return extract_key(v_complement(v));
401 };
402
403 /// merge with other key (ie concatenate), use level of rhs, not of this
404 template<std::size_t LDIM>
407 for (int i=0; i<static_cast<int>(NDIM); ++i) t[i] =this->l[i];
408 for (int i=0; i<static_cast<int>(LDIM); ++i) t[NDIM+i]=rhs.translation()[i];
409 return Key<NDIM+LDIM>(rhs.level(),t);
410 }
411
412 /// return if the other key is pointing in the same direction and is farther out
413
414 /// unlike in distsq() the direction is taken into account, and other must be
415 /// longer than this in each dimension
416 /// @param[in] other a key
417 /// @return if other is farther out
418 bool is_farther_out_than(const Key<NDIM>& other) const {
419 for (size_t i=0; i<NDIM; ++i) {
420 if ((other.translation()[i]>0) and (other.translation()[i]>l[i])) return false;
421 if ((other.translation()[i]<0) and (other.translation()[i]<l[i])) return false;
422 }
423 return true;
424 }
425
426
427 /// Recomputes hashval ... presently only done when reading from external storage
428 void
430 //hashval = sdbm(sizeof(n)+sizeof(l), (unsigned char*)(&n));
431 // default hash is still best
432
435 }
436 };
437
438 template<std::size_t NDIM>
439 std::ostream&
440 operator<<(std::ostream& s, const Key<NDIM>& key) {
441 s << "(" << key.level() << "," << key.translation() << ")";
442 return s;
443 }
444
445 /// given a source and a target, return the displacement in translation
446
447 /// @param[in] source the source key
448 /// @param[in] target the target key
449 /// @return disp such that target = source + disp
450 template<size_t NDIM>
452 MADNESS_ASSERT(source.level()==target.level());
453 const Vector<Translation,NDIM> l = target.translation()-source.translation();
454 return Key<NDIM>(source.level(),l);
455 }
456
457
458
459 /// Iterates in lexical order thru all children of a key
460
461 /// Example usage:
462 /// \code
463 /// for (KeyChildIterator<NDIM> it(key); it; ++it) print(it.key());
464 /// \endcode
465 template<std::size_t NDIM>
471
472 public:
474 p(0), finished(true) {
475 }
476
478 parent(parent), child(parent.n + 1, parent.l * 2), p(0),
479 finished(false) {
480 }
481
482 /// Pre-increment of an iterator (i.e., ++it)
485 if (finished)
486 return *this;
487 std::size_t i;
488 for (i = 0; i < NDIM; ++i) {
489 if (p[i] == 0) {
490 ++(p[i]);
491 ++(child.l[i]);
492 for (std::size_t j = 0; j < i; ++j) {
493 --(p[j]);
494 --(child.l[j]);
495 }
496 break;
497 }
498 }
499 finished = (i == NDIM);
500 child.rehash();
501 return *this;
502 }
503
504 /// True if iterator is not at end
505 operator bool() const {
506 return !finished;
507 }
508
509 template<typename Archive>
510 inline void
511 serialize(Archive& ar) {
512 ar & archive::wrap((unsigned char*) this, sizeof(*this));
513 }
514
515 /// Returns the key of the child
516 inline const Key<NDIM>&
517 key() const {
518 return child;
519 }
520 };
521
522 /// Applies op(key) to each child key of parent
523 template<std::size_t NDIM, typename opT>
524 inline void
525 foreach_child(const Key<NDIM>& parent, opT& op) {
527 it(parent); it; ++it)
528 op(it.key());
529 }
530
531 /// Applies member function of obj to each child key of parent
532 template<std::size_t NDIM, typename objT>
533 inline void
534 foreach_child(const Key<NDIM>& parent, objT* obj, void
535 (objT::*memfun)(const Key<NDIM>&)) {
537 it(parent); it; ++it)
538 (obj ->* memfun)(it.key());
539 }
540
541 namespace archive {
542
543 // For efficiency serialize opaque so is just one memcpy, but
544 // when reading from external storage rehash() so that we
545 // can read data even if hash algorithm/function has changed.
546
547 template <class Archive, std::size_t NDIM>
548 struct ArchiveLoadImpl< Archive, Key<NDIM> > {
549 static void load(const Archive& ar, Key<NDIM>& t) {
550 ar & archive::wrap((unsigned char*) &t, sizeof(t));
551 }
552 };
553
554 template <std::size_t NDIM>
556 static void load(const BinaryFstreamInputArchive& ar, Key<NDIM>& t) {
557 ar & archive::wrap((unsigned char*) &t, sizeof(t));
558 t.rehash(); // <<<<<<<<<< This is the point
559 }
560 };
561
562 template <class Archive, std::size_t NDIM>
563 struct ArchiveStoreImpl< Archive, Key<NDIM> > {
564 static void store(const Archive& ar, const Key<NDIM>& t) {
565 ar & archive::wrap((unsigned char*) &t, sizeof(t));
566 }
567 };
568 }
569
570}
571
572#endif // MADNESS_MRA_KEY_H__INCLUDED
573
Provides BoundaryConditions.
Implements an archive wrapping a binary filestream.
Iterates in lexical order thru all children of a key.
Definition key.h:466
Vector< Translation, NDIM > p
Definition key.h:469
KeyChildIterator(const Key< NDIM > &parent)
Definition key.h:477
bool finished
Definition key.h:470
const Key< NDIM > & key() const
Returns the key of the child.
Definition key.h:517
KeyChildIterator()
Definition key.h:473
Key< NDIM > child
Definition key.h:468
Key< NDIM > parent
Definition key.h:467
void serialize(Archive &ar)
Definition key.h:511
KeyChildIterator & operator++()
Pre-increment of an iterator (i.e., ++it)
Definition key.h:484
Key is the index for a node of the 2^NDIM-tree.
Definition key.h:69
Key< VDIM > extract_back() const
extract a new key consisting of last VDIM dimensions of this
Definition key.h:374
Key< NDIM+LDIM > merge_with(const Key< LDIM > &rhs) const
merge with other key (ie concatenate), use level of rhs, not of this
Definition key.h:405
Level level() const
Definition key.h:168
uint64_t distsq_bc(const array_of_bools< NDIM > &is_periodic) const
like distsq() but accounts for periodicity
Definition key.h:193
bool is_farther_out_than(const Key< NDIM > &other) const
return if the other key is pointing in the same direction and is farther out
Definition key.h:418
Vector< Translation, NDIM > l
Definition key.h:77
Key neighbor(const Vector< Translation, NDIM > &disp) const
given a displacement, generate a neighbor key; ignore boundary conditions and disp's level
Definition key.h:312
Key(int n)
Constructor with given n and l=0.
Definition key.h:94
Key(Level n, const Vector< Translation, NDIM > &l)
Constructor with given n, l.
Definition key.h:87
bool is_parent_of(const Key &key) const
Definition key.h:279
bool is_neighbor_of(const Key &key, const array_of_bools< NDIM > &bperiodic) const
Assuming keys are at the same level, returns true if displaced by no more than 1 in any direction.
Definition key.h:287
Key()
Default constructor makes an uninitialized key.
Definition key.h:84
bool is_valid() const
Checks if a key is valid.
Definition key.h:123
hashT hash() const
Definition key.h:157
bool thisKeyContains(const Vector< double, NDIM > &x, const unsigned int &dim0, const unsigned int &dim1) const
check if this MultiIndex contains point x, disregarding these two dimensions
Definition key.h:319
bool is_invalid() const
Checks if a key is invalid.
Definition key.h:118
bool operator==(const Key &other) const
Equality test.
Definition key.h:128
const Translation & operator[](std::size_t d) const
const accessor to elements of this->translation()
Definition key.h:178
Level n
Definition key.h:76
static const std::size_t static_size
Definition key.h:72
uint64_t distsq_bc(const array_of_bools< NDIM > &is_periodic, const std::array< std::size_t, NDIM2 > &axes) const
Definition key.h:218
bool operator!=(const Key &other) const
Definition key.h:136
Key< NDIM-VDIM > extract_complement_key(const std::array< int, VDIM > &v) const
extract a new key with the Translations complementary to the ones indicated in the v array
Definition key.h:391
Key< VDIM > extract_front() const
extract a new key consisting of first VDIM dimensions of this
Definition key.h:365
Key< VDIM > extract_key(const std::array< int, VDIM > &v) const
extract a new key with the Translations indicated in the v array
Definition key.h:383
hashT hashval
Definition key.h:78
Key parent(int generation=1) const
Returns the key of the parent.
Definition key.h:252
void rehash()
Recomputes hashval ... presently only done when reading from external storage.
Definition key.h:429
const Vector< Translation, NDIM > & translation() const
Definition key.h:173
bool operator<(const Key &other) const
Comparison operator less than to enable storage in STL map.
Definition key.h:141
static Key< NDIM > invalid()
Returns an invalid key.
Definition key.h:109
uint64_t distsq() const
Definition key.h:183
Key neighbor(const Key< NDIM > &disp) const
given a displacement, generate a neighbor key; ignore boundary conditions and disp's level
Definition key.h:303
bool is_child_of(const Key &key) const
Definition key.h:263
void break_apart(Key< LDIM > &key1, Key< KDIM > &key2) const
break key into two low-dimensional keys
Definition key.h:343
A simple, fixed dimension vector.
Definition vector.h:64
Wraps an archive around a binary filestream for input.
Definition binary_fstream_archive.h:104
syntactic sugar for std::array<bool, N>
Definition array_of_bools.h:19
archive_array< T > wrap(const T *, unsigned int)
Factory function to wrap a dynamically allocated pointer as a typed archive_array.
Definition archive.h:913
static const double v
Definition hatom_sf_dirac.cc:20
Tensor< double > op(const Tensor< double > &x)
Definition kain.cc:508
#define MADNESS_PRAGMA_GCC(x)
Definition madness_config.h:205
#define MADNESS_ASSERT(condition)
Assert a condition that should be free of side-effects since in release builds this might be a no-op.
Definition madness_exception.h:134
Namespace for all elements and tools of MADNESS.
Definition DFParameters.h:10
std::ostream & operator<<(std::ostream &os, const particle< PDIM > &p)
Definition lowrankfunction.h:397
void hash_combine(hashT &seed, const T &v)
Combine hash values.
Definition worldhash.h:260
int64_t Translation
Definition key.h:57
Key< NDIM > displacement(const Key< NDIM > &source, const Key< NDIM > &target)
given a source and a target, return the displacement in translation
Definition key.h:451
int Level
Definition key.h:58
static double pop(std::vector< double > &v)
Definition SCF.cc:113
std::size_t hashT
The hash value type.
Definition worldhash.h:145
void foreach_child(const Key< NDIM > &parent, opT &op)
Applies op(key) to each child key of parent.
Definition key.h:525
madness::hashT hash_value(const std::array< T, N > &a)
Hash std::array with madness hash.
Definition array_addons.h:78
static long abs(long a)
Definition tensor.h:218
static const double d
Definition nonlinschro.cc:121
static const double a
Definition nonlinschro.cc:118
static void load(const Archive &ar, Key< NDIM > &t)
Definition key.h:549
static void load(const BinaryFstreamInputArchive &ar, Key< NDIM > &t)
Definition key.h:556
Default load of an object via serialize(ar, t).
Definition archive.h:666
static void store(const Archive &ar, const Key< NDIM > &t)
Definition key.h:564
Default store of an object via serialize(ar, t).
Definition archive.h:611
double dist(const Vector< double, 3 > v1, const Vector< double, 3 > v2)
distance between v1 and v2
Definition test_localizer.cc:38
constexpr std::size_t NDIM
Definition testgconv.cc:54
double source(const coordT &r)
Definition testperiodic.cc:48
Implement the madness:Vector class, an extension of std::array that supports some mathematical operat...
Defines hash functions for use in distributed containers.
FLOAT target(const FLOAT &x)
Definition y.cc:295