slope 0.29.0
Loading...
Searching...
No Matches
clusters.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <Eigen/SparseCore>
9#include <vector>
10
11namespace slope {
12
18{
19public:
23 Clusters() = default;
24
29 Clusters(const Eigen::VectorXd& beta);
30
35 std::size_t size() { return c.size(); }
36
43 std::vector<int>::iterator begin(const int i);
44
51 std::vector<int>::iterator end(const int i);
52
59 std::vector<int>::const_iterator cbegin(const int i) const;
60
67 std::vector<int>::const_iterator cend(const int i) const;
68
74 int cluster_size(const int i) const;
75
81 int pointer(const int i) const;
82
87 int n_clusters() const;
88
94 double coeff(const int i) const;
95
101 void setCoeff(const int i, const double x);
102
107 std::vector<double> coeffs() const;
108
113 std::vector<int> indices() const;
114
119 std::vector<int> pointers() const;
120
127 void update(const int old_index, const int new_index, const double c_new);
128
133 void update(const Eigen::VectorXd& beta);
134
139 std::vector<std::vector<int>> getClusters() const;
140
149 Eigen::SparseMatrix<int> patternMatrix() const;
150
151private:
152 std::vector<double> c;
153 std::vector<int> c_ind;
154 std::vector<int> signs;
155 std::vector<int>
156 c_ptr;
157 int p;
163 mutable std::vector<int> zero_indices;
164
168 mutable bool zero_indices_valid = false;
169
175 void reorder(const int old_index, const int new_index);
176
182 void merge(const int old_index, const int new_index);
183
188 std::vector<int>& getZeroIndices() const;
189
194 bool hasAllZeros() const;
195};
196
206Eigen::SparseMatrix<int>
207patternMatrix(const Eigen::VectorXd& beta);
208
209} // namespace slope
Representation of the clusters in SLOPE.
Definition clusters.h:18
void update(const int old_index, const int new_index, const double c_new)
Updates the cluster structure when an index is changed.
Definition clusters.cpp:164
double coeff(const int i) const
Returns the coefficient of the cluster with the given index.
Definition clusters.cpp:117
std::size_t size()
Returns the number of clusters.
Definition clusters.h:35
Eigen::SparseMatrix< int > patternMatrix() const
Returns the cluster pattern as a sparse matrix.
Definition clusters.cpp:336
int cluster_size(const int i) const
Returns the size of the cluster with the given index.
Definition clusters.cpp:78
int pointer(const int i) const
Returns the pointer of the cluster with the given index.
Definition clusters.cpp:93
std::vector< std::vector< int > > getClusters() const
Returns the clusters as a vector of vectors.
Definition clusters.cpp:313
std::vector< int > indices() const
Returns a vector containing the indices of all clusters.
Definition clusters.cpp:152
void setCoeff(const int i, const double x)
Sets the coefficient of the cluster with the given index.
Definition clusters.cpp:127
int n_clusters() const
Returns the number of clusters.
Definition clusters.cpp:103
std::vector< int >::iterator begin(const int i)
Returns an iterator pointing to the beginning of the cluster with the given index.
Definition clusters.cpp:58
Clusters()=default
Constructs an Clusters object.
std::vector< int >::const_iterator cend(const int i) const
Returns a constant iterator pointing to the end of the cluster with the given index.
Definition clusters.cpp:48
std::vector< int > pointers() const
Returns a vector containing the pointers of all clusters.
Definition clusters.cpp:158
std::vector< int >::iterator end(const int i)
Returns an iterator pointing to the end of the cluster with the given index.
Definition clusters.cpp:68
std::vector< double > coeffs() const
Returns a vector containing the coefficients of all clusters.
Definition clusters.cpp:133
std::vector< int >::const_iterator cbegin(const int i) const
Returns a constant iterator pointing to the beginning of the cluster with the given index.
Definition clusters.cpp:38
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5
Eigen::SparseMatrix< int > patternMatrix(const Eigen::VectorXd &beta)
Returns the cluster pattern as a sparse matrix.
Definition clusters.cpp:365