10 #ifndef EIGEN_SKYLINE_STORAGE_H
11 #define EIGEN_SKYLINE_STORAGE_H
21 template<
typename Scalar>
23 typedef typename NumTraits<Scalar>::Real RealScalar;
24 typedef SparseIndex Index;
36 m_upperProfileSize(0),
37 m_lowerProfileSize(0),
50 m_upperProfileSize(0),
51 m_lowerProfileSize(0),
57 resize(other.diagSize(), other.m_upperProfileSize, other.m_lowerProfileSize, other.upperSize(), other.lowerSize());
58 memcpy(m_diag, other.m_diag, m_diagSize * sizeof (Scalar));
59 memcpy(m_upper, other.m_upper, other.upperSize() *
sizeof (Scalar));
60 memcpy(m_lower, other.m_lower, other.lowerSize() *
sizeof (Scalar));
61 memcpy(m_upperProfile, other.m_upperProfile, m_upperProfileSize * sizeof (Index));
62 memcpy(m_lowerProfile, other.m_lowerProfile, m_lowerProfileSize * sizeof (Index));
67 std::swap(m_diag, other.m_diag);
68 std::swap(m_upper, other.m_upper);
69 std::swap(m_lower, other.m_lower);
70 std::swap(m_upperProfile, other.m_upperProfile);
71 std::swap(m_lowerProfile, other.m_lowerProfile);
72 std::swap(m_diagSize, other.m_diagSize);
73 std::swap(m_upperSize, other.m_upperSize);
74 std::swap(m_lowerSize, other.m_lowerSize);
75 std::swap(m_allocatedSize, other.m_allocatedSize);
81 if (m_upper != m_lower)
83 delete[] m_upperProfile;
84 delete[] m_lowerProfile;
87 void reserve(Index size, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) {
88 Index newAllocatedSize = size + upperSize + lowerSize;
89 if (newAllocatedSize > m_allocatedSize)
90 reallocate(size, upperProfileSize, lowerProfileSize, upperSize, lowerSize);
94 if (m_allocatedSize > m_diagSize + m_upperSize + m_lowerSize)
95 reallocate(m_diagSize, m_upperProfileSize, m_lowerProfileSize, m_upperSize, m_lowerSize);
98 void resize(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize,
float reserveSizeFactor = 0) {
99 if (m_allocatedSize < diagSize + upperSize + lowerSize)
100 reallocate(diagSize, upperProfileSize, lowerProfileSize, upperSize + Index(reserveSizeFactor * upperSize), lowerSize + Index(reserveSizeFactor * lowerSize));
101 m_diagSize = diagSize;
102 m_upperSize = upperSize;
103 m_lowerSize = lowerSize;
104 m_upperProfileSize = upperProfileSize;
105 m_lowerProfileSize = lowerProfileSize;
108 inline Index diagSize()
const {
112 inline Index upperSize()
const {
116 inline Index lowerSize()
const {
120 inline Index upperProfileSize()
const {
121 return m_upperProfileSize;
124 inline Index lowerProfileSize()
const {
125 return m_lowerProfileSize;
128 inline Index allocatedSize()
const {
129 return m_allocatedSize;
132 inline void clear() {
136 inline Scalar& diag(Index i) {
140 inline const Scalar& diag(Index i)
const {
144 inline Scalar& upper(Index i) {
148 inline const Scalar& upper(Index i)
const {
152 inline Scalar& lower(Index i) {
156 inline const Scalar& lower(Index i)
const {
160 inline Index& upperProfile(Index i) {
161 return m_upperProfile[i];
164 inline const Index& upperProfile(Index i)
const {
165 return m_upperProfile[i];
168 inline Index& lowerProfile(Index i) {
169 return m_lowerProfile[i];
172 inline const Index& lowerProfile(Index i)
const {
173 return m_lowerProfile[i];
176 static SkylineStorage Map(Index* upperProfile, Index* lowerProfile, Scalar* diag, Scalar* upper, Scalar* lower, Index size, Index upperSize, Index lowerSize) {
178 res.m_upperProfile = upperProfile;
179 res.m_lowerProfile = lowerProfile;
183 res.m_allocatedSize = res.m_diagSize = size;
184 res.m_upperSize = upperSize;
185 res.m_lowerSize = lowerSize;
189 inline void reset() {
190 memset(m_diag, 0, m_diagSize *
sizeof (Scalar));
191 memset(m_upper, 0, m_upperSize *
sizeof (Scalar));
192 memset(m_lower, 0, m_lowerSize *
sizeof (Scalar));
193 memset(m_upperProfile, 0, m_diagSize *
sizeof (Index));
194 memset(m_lowerProfile, 0, m_diagSize *
sizeof (Index));
197 void prune(Scalar reference, RealScalar epsilon = dummy_precision<RealScalar>()) {
203 inline void reallocate(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) {
205 Scalar* diag =
new Scalar[diagSize];
206 Scalar* upper =
new Scalar[upperSize];
207 Scalar* lower =
new Scalar[lowerSize];
208 Index* upperProfile =
new Index[upperProfileSize];
209 Index* lowerProfile =
new Index[lowerProfileSize];
211 Index copyDiagSize = (std::min)(diagSize, m_diagSize);
212 Index copyUpperSize = (std::min)(upperSize, m_upperSize);
213 Index copyLowerSize = (std::min)(lowerSize, m_lowerSize);
214 Index copyUpperProfileSize = (std::min)(upperProfileSize, m_upperProfileSize);
215 Index copyLowerProfileSize = (std::min)(lowerProfileSize, m_lowerProfileSize);
218 memcpy(diag, m_diag, copyDiagSize *
sizeof (Scalar));
219 memcpy(upper, m_upper, copyUpperSize *
sizeof (Scalar));
220 memcpy(lower, m_lower, copyLowerSize *
sizeof (Scalar));
221 memcpy(upperProfile, m_upperProfile, copyUpperProfileSize *
sizeof (Index));
222 memcpy(lowerProfile, m_lowerProfile, copyLowerProfileSize *
sizeof (Index));
230 delete[] m_upperProfile;
231 delete[] m_lowerProfile;
235 m_upperProfile = upperProfile;
236 m_lowerProfile = lowerProfile;
237 m_allocatedSize = diagSize + upperSize + lowerSize;
238 m_upperSize = upperSize;
239 m_lowerSize = lowerSize;
246 Index* m_upperProfile;
247 Index* m_lowerProfile;
251 Index m_upperProfileSize;
252 Index m_lowerProfileSize;
253 Index m_allocatedSize;
259 #endif // EIGEN_COMPRESSED_STORAGE_H
Definition: SkylineStorage.h:22