DFT-FE 1.1.0-pre
Density Functional Theory With Finite-Elements
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OptimizedIndexSet.h
Go to the documentation of this file.
1// ---------------------------------------------------------------------
2//
3// Copyright (c) 2017-2025 The Regents of the University of Michigan and DFT-FE
4// authors.
5//
6// This file is part of the DFT-FE code.
7//
8// The DFT-FE code is free software; you can use it, redistribute
9// it, and/or modify it under the terms of the GNU Lesser General
10// Public License as published by the Free Software Foundation; either
11// version 2.1 of the License, or (at your option) any later version.
12// The full text of the license can be found in the file LICENSE at
13// the top level of the DFT-FE distribution.
14//
15// ---------------------------------------------------------------------
16//
17
18/*
19 * @author Bikash Kanungo
20 */
21#ifndef dftfeOptimizedIndexSet_h
22#define dftfeOptimizedIndexSet_h
23
24#include <TypeConfig.h>
25#include <set>
26#include <vector>
27namespace dftfe
28{
29 namespace utils
30 {
31 /*
32 * @brief Class to create an optimized index set which
33 * creates contiguous sub-ranges within an index set for faster
34 * search operation. This is useful when the number of contiguous sub-ranges
35 * are fewer compared to the size of the index set. If the number of
36 * contiguous sub-ranges competes with the size of the index set (i.e., the
37 * index set is very random) then it default to the behavior of an std::set.
38 *
39 * @tparam ValueType The data type of the indices (e.g., unsigned int, unsigned long int)
40 */
41
42 template <typename T>
44 {
45 public:
46 /**
47 * @brief Constructor
48 *
49 * @param[in] inputSet A set of unsigned int or unsigned long int
50 * for which an OptimizedIndexSet is to be created
51 */
52 OptimizedIndexSet(const std::set<T> &inputSet = std::set<T>());
53 ~OptimizedIndexSet() = default;
54
55 void
56 getPosition(const T &index, size_type &pos, bool &found) const;
57
58 bool
59 getPosition(const OptimizedIndexSet<T> &rhs) const;
60
61
62 private:
63 /// Store the number of contiguous ranges in the input set of indices
65
66 /*
67 * Vector of size 2*(d_numContiguousRanges in d_set).
68 * The entries are arranged as:
69 * <contiguous range1 startId> <continguous range1 endId> <contiguous
70 * range2 startId> <continguous range2 endId> ... NOTE: The endId is one
71 * past the lastId in the continguous range
72 */
73 std::vector<T> d_contiguousRanges;
74
75 /// Vector of size d_numContiguousRanges which stores the accumulated
76 /// number of elements in d_set prior to the i-th contiguous range
77 std::vector<size_type> d_numEntriesBefore;
78
79 bool
81 };
82
83 } // end of namespace utils
84
85} // end of namespace dftfe
87#endif // dftfeOptimizedSet_h
size_type d_numContiguousRanges
Store the number of contiguous ranges in the input set of indices.
Definition OptimizedIndexSet.h:64
std::vector< size_type > d_numEntriesBefore
Definition OptimizedIndexSet.h:77
bool operator==(const OptimizedIndexSet< T > &rhs) const
std::vector< T > d_contiguousRanges
Definition OptimizedIndexSet.h:73
void getPosition(const T &index, size_type &pos, bool &found) const
Definition OptimizedIndexSet.t.cc:80
OptimizedIndexSet(const std::set< T > &inputSet=std::set< T >())
Constructor.
Definition OptimizedIndexSet.t.cc:34
Definition Cell.h:36
Definition pseudoPotentialToDftfeConverter.cc:34
unsigned int size_type
Definition TypeConfig.h:6