-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMSP.data.hpp
176 lines (142 loc) · 4.89 KB
/
MMSP.data.hpp
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
// MMSP.data.hpp
// Class definitions for MMSP data structures
// Questions/comments to [email protected] (Jason Gruber)
#ifndef MMSP_DATA
#define MMSP_DATA
#include<map>
#include<cmath>
#include<vector>
#include<complex>
#include<algorithm>
#include <cstdlib> // added ADR 9 i 09
#include <stdio.h> // added ADR 9 i 09
#include <string.h> // added ADR 9 i 09
namespace MMSP{
template<typename value_type> class unused{
public:
// constructors
explicit unused(...) {}
// buffer I/O
int buffer_size() const {return 0;}
void to_buffer(char* buffer) const {}
void from_buffer(const char* buffer) {}
// assignment operators
unused& operator=(const value_type& temp) {return *this;}
unused& operator=(const unused& temp) {return *this;}
// data access operators
operator value_type&() {return static_cast<value_type>(0);}
operator const value_type&() const {return static_cast<value_type>(0);}
// data structure sizes
void resize(int n) const {}
int fields() const {return 0;}
int nonzero() const {return 0;}
};
template<typename value_type> class scalar{
public:
// constructors
explicit scalar(...) {}
// buffer I/O
int buffer_size() const {return sizeof(data);}
void to_buffer(char* buffer) const {memcpy(buffer,&data,sizeof(data));}
void from_buffer(const char* buffer) {memcpy(&data,buffer,sizeof(data));}
// assignment operators
scalar& operator=(const value_type& temp) {data=temp; return *this;}
scalar& operator=(const scalar& temp) {data=temp.data; return *this;}
// data access operators
operator value_type&() {return data;}
operator const value_type&() const {return data;}
// data structure sizes
void resize(int n) const {}
int fields() const {return 1;}
int nonzero() const {return (data!=static_cast<value_type>(0));}
private:
value_type data;
};
template<typename value_type> class vector{
public:
// constructors
explicit vector(int n = 1, ...) {data.resize(n);}
// buffer I/O
int buffer_size() const {return data.size()*sizeof(value_type);}
void to_buffer(char* buffer) const {memcpy(buffer,&data[0],data.size()*sizeof(value_type));}
void from_buffer(const char* buffer) {memcpy(&data[0],buffer,data.size()*sizeof(value_type));}
// assignment operators
vector& operator=(const vector& temp) {data=temp.data; return *this;}
// data access operators
value_type& operator[](int i) {return data[i];}
const value_type& operator[](int i) const {return data[i];}
// data structure sizes
void resize(int n) {return data.resize(n);}
int fields() const {return data.size();}
int nonzero() const {return count_if(data.begin(),data.end(),
bind2nd(std::not_equal_to<value_type>(),static_cast<value_type>(0)));}
private:
std::vector<value_type> data;
};
template<typename value_type> class sparse{
public:
// constructors
explicit sparse(...) {}
// buffer I/O
int buffer_size() const;
void to_buffer(char* buffer) const;
void from_buffer(const char* buffer);
// assignment operators
sparse& operator=(const sparse& temp) {data=temp.data; return *this;}
// data access operators
value_type& operator[](int i);
const value_type operator[](int i) const;
// data structure sizes
void resize(int n) const {}
int fields() const {return data.size();}
int nonzero() const {return data.size();}
// utility functions
int index(int i) const {return data[i].first;}
value_type value(int i) const {return data[i].second;}
private:
std::vector<std::pair<int,value_type> > data;
};
template <typename value_type>
value_type& sparse<value_type>::operator[](int index)
{
int n = data.size();
for (int i=0; i<n; i++)
if (data[i].first==index) return data[i].second;
data.push_back(std::make_pair(index,static_cast<value_type>(0)));
return data.back().second;
}
template <typename value_type>
const value_type sparse<value_type>::operator[](int index) const
{
int n = data.size();
for (int i=0; i<n; i++)
if (data[i].first==index) return data[i].second;
return static_cast<value_type>(0);
}
template <typename value_type>
int sparse<value_type>::buffer_size() const
{
int n = data.size();
return sizeof(int)+sizeof(std::pair<int,value_type>);
}
template <typename value_type>
void sparse<value_type>::to_buffer(char* buffer) const
{
char* p = buffer;
int n = data.size();
memcpy(p,&n,sizeof(int));
p += sizeof(int);
memcpy(p,&data[0],n*sizeof(std::pair<int,value_type>));
}
template <typename value_type>
void sparse<value_type>::from_buffer(const char* buffer)
{
const char* p = buffer;
int n;
memcpy(&n,p,sizeof(int));
p += sizeof(int);
data.resize(n);
memcpy(&data[0],p,n*sizeof(std::pair<int,value_type>));
}
} // namespace MMSP
#endif