Menu

[r193]: / trunk / include / dgsmatrix- / dgsmatrix-io.hpp  Maximize  Restore  History

Download this file

278 lines (244 with data), 10.2 kB

  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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
//=============================================================================
/*! operator() for const object */
inline double dgsmatrix::operator()(const CPPL_INT& i, const CPPL_INT& j) const
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( i<0 || j<0 || m<=i || n<=j ){
ERROR_REPORT;
std::cerr << "The required component is out of the matrix size." << std::endl
<< "Your input is (" << i << "," << j << "), whereas the matrix size is " << m << "x" << n << "." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
//// search (i,j) component ////
const std::vector<CPPL_INT>::const_iterator rows_i_end =rows[i].end();
for(std::vector<CPPL_INT>::const_iterator p=rows[i].begin(); p!=rows_i_end; p++){
if(data[*p].j==j){ return data[*p].v; }
}
//// (i,j) component was not found ////
return 0.0;
}
//=============================================================================
/*! operator() for const object */
inline double& dgsmatrix::operator()(const CPPL_INT& i, const CPPL_INT& j)
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( i<0 || j<0 || m<=i || n<=j ){
ERROR_REPORT;
std::cerr << "The required component is out of the matrix size." << std::endl
<< "Your input is (" << i << "," << j << "), whereas the matrix size is " << m << "x" << n << "." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
//////// search (i,j) component ////////
const std::vector<CPPL_INT>::iterator rows_i_end =rows[i].end();
for(std::vector<CPPL_INT>::iterator p=rows[i].begin(); p!=rows_i_end; p++){
if(data[*p].j==j){ return data[*p].v; }
}
//////// (i,j) component not found ////////
rows[i].push_back(CPPL_INT(data.size()));
cols[j].push_back(CPPL_INT(data.size()));
data.push_back(dcomponent(i,j,0.));
return data.back().v;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! put value with volume cheack without isListed check */
inline dgsmatrix& dgsmatrix::put(const CPPL_INT& i, const CPPL_INT& j, const double& v)
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( i<0 || j<0 || m<=i || n<=j ){
ERROR_REPORT;
std::cerr << "The required component is out of the matrix size." << std::endl
<< "Your input is (" << i << "," << j << "), whereas the matrix size is " << m << "x" << n << "." << std::endl;
exit(1);
}
const std::vector<dcomponent>::const_iterator data_end =data.end();
for(std::vector<dcomponent>::const_iterator it=data.begin(); it!=data_end; it++){
if( it->i==i && it->j==j ){
ERROR_REPORT;
std::cerr << "The required component is already listed." << std::endl
<< "Your input was (" << i << "," << j << "," << v << ")." << std::endl;
exit(1);
}
}
#endif//CPPL_DEBUG
//// push ////
rows[i].push_back(CPPL_INT(data.size()));
cols[j].push_back(CPPL_INT(data.size()));
data.push_back(dcomponent(i,j,v));
return *this;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! delete the entry of a component */
inline dgsmatrix& dgsmatrix::del(const CPPL_INT i, const CPPL_INT j)
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( i<0 || j<0 || m<=i || n<=j ){
ERROR_REPORT;
std::cerr << "The required component is out of the matrix size." << std::endl
<< "Your input is (" << i << "," << j << "), whereas the matrix size is " << m << "x" << n << "." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
//// search (i,j) component ////
const std::vector<CPPL_INT>::iterator rows_i_end =rows[i].end();
for(std::vector<CPPL_INT>::iterator p=rows[i].begin(); p!=rows_i_end; p++){
if(data[*p].j==j){//exists
//// save position ////
CPPL_INT c =*p;
CPPL_INT C =CPPL_INT(data.size()-1);
//// data translation ////
data[c]=data.back();
data.pop_back();
//// remove from List ////
rows[i].erase(p);
const std::vector<CPPL_INT>::iterator cols_j_end =cols[j].end();
for(std::vector<CPPL_INT>::iterator q=cols[j].begin(); q!=cols_j_end; q++){
if(*q==c){ cols[j].erase(q); break; }
}
//// modify the entry of translated component ////
CPPL_INT I(data[c].i), J(data[c].j);
const std::vector<CPPL_INT>::iterator rows_I_end =rows[I].end();
for(std::vector<CPPL_INT>::iterator q=rows[I].begin(); q!=rows_I_end; q++){
if(*q==C){ *q=c; break; }
}
const std::vector<CPPL_INT>::iterator cols_J_end =cols[J].end();
for(std::vector<CPPL_INT>::iterator q=cols[J].begin(); q!=cols_J_end; q++){
if(*q==C){ *q=c; break; }
}
return *this;
}
}
#ifdef CPPL_DEBUG
std::cerr << "# [NOTE]@dgsmatrix::del(CPPL_INT&, CPPL_INT&): The required component was not listed. Your input was (" << i << "," << j << ")." << std::endl;
#endif//CPPL_DEBUG
return *this;
}
//=============================================================================
/*! delete the entry of an element */
inline dgsmatrix& dgsmatrix::del(const CPPL_INT c)
{CPPL_VERBOSE_REPORT;
if( c==CPPL_INT(data.size()-1) ){//if c is the last element
CPPL_INT i(data[c].i), j(data[c].j);
const std::vector<CPPL_INT>::iterator rows_i_end =rows[i].end();
for(std::vector<CPPL_INT>::iterator q=rows[i].begin(); q!=rows_i_end; q++){
if(*q==c){ rows[i].erase(q); break; }
}
const std::vector<CPPL_INT>::iterator cols_j_end =cols[j].end();
for(std::vector<CPPL_INT>::iterator q=cols[j].begin(); q!=cols_j_end; q++){
if(*q==c){ cols[j].erase(q); break; }
}
data.pop_back();
}
else{//if c is NOT the last element
//// data translation ////
CPPL_INT C =CPPL_INT(data.size()-1);
CPPL_INT i(data[c].i), j(data[c].j), I(data.back().i), J(data.back().j);
data[c]=data.back();
//// remove entry of component ////
const std::vector<CPPL_INT>::iterator rows_i_end =rows[i].end();
for(std::vector<CPPL_INT>::iterator q=rows[i].begin(); q!=rows_i_end; q++){
if(*q==c){ rows[i].erase(q); break; }
}
const std::vector<CPPL_INT>::iterator cols_j_end =cols[j].end();
for(std::vector<CPPL_INT>::iterator q=cols[j].begin(); q!=cols_j_end; q++){
if(*q==c){ cols[j].erase(q); break; }
}
//// modify the entry of translated component ////
const std::vector<CPPL_INT>::iterator rows_I_end =rows[I].end();
for(std::vector<CPPL_INT>::iterator q=rows[I].begin(); q!=rows_I_end; q++){
if(*q==C){ *q=c; break; }
}
const std::vector<CPPL_INT>::iterator cols_J_end =cols[J].end();
for(std::vector<CPPL_INT>::iterator q=cols[J].begin(); q!=cols_J_end; q++){
if(*q==C){ *q=c; break; }
}
//// pop_back ////
data.pop_back();
}
return *this;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
inline std::ostream& operator<<(std::ostream& s, const dgsmatrix& mat)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT i=0; i<mat.m; i++){
const std::vector<CPPL_INT>::const_iterator mat_rows_i_end =mat.rows[i].end();
for(CPPL_INT j=0; j<mat.n; j++){
std::vector<CPPL_INT>::const_iterator q;
for(q=mat.rows[i].begin(); q!=mat_rows_i_end; q++){
if(mat.data[*q].j==j){ break; }
}
if(q!=mat_rows_i_end){ s << " " << mat.data[*q].v; }
else{ s << " x"; }
}
s << std::endl;
}
return s;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
inline void dgsmatrix::write(const char* filename) const
{CPPL_VERBOSE_REPORT;
std::ofstream ofs(filename, std::ios::trunc);
ofs.setf(std::cout.flags());
ofs.precision(std::cout.precision());
ofs.width(std::cout.width());
ofs.fill(std::cout.fill());
ofs << "#dgsmatrix " << m << " " << n << " " << data.size() << std::endl;
const std::vector<dcomponent>::const_iterator data_end =data.end();
for(std::vector<dcomponent>::const_iterator it=data.begin(); it!=data_end; it++){
ofs << it->i << " " << it->j << " " << it->v << std::endl;
}
ofs.close();
}
//=============================================================================
inline void dgsmatrix::read(const char* filename)
{CPPL_VERBOSE_REPORT;
std::ifstream s( filename );
if(!s){
ERROR_REPORT;
std::cerr << "The file \"" << filename << "\" can not be opened." << std::endl;
exit(1);
}
//////// id ////////
std::string id;
s >> id;
if( id != "dgsmatrix" && id != "#dgsmatrix" ){
ERROR_REPORT;
std::cerr << "The type name of the file \"" << filename << "\" is not dgsmatrix." << std::endl
<< "Its type name was " << id << " ." << std::endl;
exit(1);
}
//////// m, n, size ////////
size_t size;
s >> m >> n >> size;
resize(m, n);
data.reserve(size);//NOT resize.
//////// i, j, v ////////
CPPL_INT i, j;
double v;
for(size_t k=0; k<size; k++){
s >> i >> j >> v;
put(i,j, v);
}
//////// check ////////
s >> i;
if(!s.eof()){
ERROR_REPORT;
std::cerr << "There is something is wrong with the file \"" << filename << " ." << std::endl
<< "Most likely, there are too many data components over the context." << std::endl;
exit(1);
}
s.close();
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.