-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaa_aaf.h
More file actions
422 lines (374 loc) · 11.1 KB
/
aa_aaf.h
File metadata and controls
422 lines (374 loc) · 11.1 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
* aa_aaf.h -- Affine Arithmetic class
* Copyright (C) 2003 EPFL (Ecole Polytechnique Federale de Lausanne)
* Copyright (c) 2004 LIRIS (University Claude Bernard Lyon 1)
* Copyright (C) 2009 LUH (Leibniz Universitaet Hannover)
*
* This file is part of aaflib.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with libaa; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef AA_AAF_H
#define AA_AAF_H
#include "aa_exceptions.h"
#include "aa_interval.h"
#include <iostream>
#include <list>
#include <vector>
typedef enum { MINRANGE,
CHEBYSHEV,
SECANT } tApproximationType;
#define FAST_RAD
#ifdef USE_QPF
class QPF;
#endif
// Affine Arithmetic Form
class AAF {
private:
// central value
double cvalue;
// length of indexes
unsigned length;
// array size of indexes and deviations
unsigned size;
#ifdef FAST_RAD
double radius;
#endif
// At creation we don't store null deviations
// values of parial deviations
double* deviations;
// indexes of partial deviations
unsigned* indexes;
// current approximation type: <CHEBYSHEV> (default), <MINRANGE> or <SECANT>
static tApproximationType approximationType;
// highest deviation symbol in use
static unsigned last;
#ifdef CLEANUP
// pointers to all affine variables
static list<AAF*> allAAF;
#endif
public:
// constructors
AAF(double v0 = 0.0);
AAF(double, const double*, const unsigned*, unsigned);
AAF(const AAF&);
AAF(const AAInterval);
// destructor
~AAF();
unsigned int get_class_size(void);
unsigned int get_class_size_index(void);
unsigned int get_class_size_deviations(void);
double operator[](unsigned) const;
bool operator<(const AAF&) const;
bool operator<=(const AAF&) const;
bool operator>(const AAF&) const;
bool operator>=(const AAF&) const;
bool operator==(const AAF&) const;
AAF& operator=(const AAF&);
AAF& operator=(const double);
AAF operator+(const AAF&) const;
AAF operator-(const AAF&) const;
AAF operator*(const AAF&);
AAF operator/(const AAF&);
AAF operator^(const int) const;
AAF operator^(const double) const;
AAF operator-() const;
AAF& operator+=(double);
AAF& operator-=(double);
AAF& operator*=(double);
AAF& operator/=(double);
AAF& operator+=(const AAF&);
AAF& operator-=(const AAF&);
AAF& operator*=(const AAF&);
AAF operator*(double);
AAF operator/(double);
AAF operator^(const AAF) const;
friend std::ostream& operator<<(std::ostream&, const AAF&);
unsigned getlength() const;
double getcenter() const;
AAInterval convert() const;
double rad() const;
double getMax() const;
double getMin() const;
double getAbsMax() const;
double getAbsMin() const;
unsigned getFirstIndex(void) const;
unsigned getLastIndex(void) const;
#ifdef USE_AAF_EXTENSIONS
// special methods declared in aa_aafspecial.c
#ifdef USE_QPF
AAF& operator=(const QPF&);
#endif
unsigned getData(unsigned*, double*) const;
void get(double*, unsigned, unsigned npp = 1);
void getPD(double*, unsigned, unsigned, unsigned npp = 1);
void getAt(double*, unsigned, unsigned, unsigned npp = 1);
void update(double*, unsigned, unsigned npp = 1);
unsigned sumup(unsigned);
void sumup(double);
void sumupall(void);
void compact(void);
void resize(void) { resize(getLastIndex() - 1); };
void resize(unsigned int);
void resize(unsigned int, unsigned int);
void ResizeNewSymbol(unsigned int ind);
void addPD(double);
double at(unsigned) const;
void set(unsigned, double);
void setLast(double);
void submul(const AAF&, double);
#endif
// static methods
static tApproximationType getApproximationType(void);
static void setApproximationType(tApproximationType);
#ifdef USE_AAF_EXTENSIONS
// this method must be treaten carefully !!!
static void setDefault(const unsigned val = 0);
#endif
static unsigned getDefault(void);
#ifdef CLEANUP
static void cleanup(double);
#endif
// friend methods
friend AAF sqrt(const AAF&);
friend AAF sqr(const AAF&);
friend AAF isqrt(const AAF&);
friend AAF exp(const AAF&);
friend AAF log(const AAF&);
friend AAF logexp(const AAF&);
friend AAF atan(const AAF&);
friend AAF tanh(const AAF&);
friend AAF inv(const AAF&);
friend AAF sin(const AAF&);
friend AAF heaviside(const AAF&);
friend AAF aaf_pow(const AAF&, const AAF&);
friend AAF aaf_pow(const AAF&, const double&);
friend AAF aaf_pow(const double&, const AAF&);
#ifdef USE_AAF_EXTENSIONS
friend AAF mos(AAF&, AAF&);
friend AAF arg(AAF&, AAF&);
friend AAF mag(const AAF&, const AAF&);
friend AAF magdb(AAF&, AAF&);
#endif
private:
static unsigned inclast();
public:
void aafprint() const;
};
// binary operators
AAF operator*(double, const AAF);
AAF operator/(double, const AAF);
AAF operator+(double, const AAF);
AAF operator-(double, const AAF);
// unary functions
AAF sqrt(const AAF&);
AAF isqrt(const AAF&);
AAF cos(const AAF&);
AAF tan(const AAF&);
AAF cotan(const AAF&);
AAF exp(const AAF&);
AAF log(const AAF&);
AAF logexp(const AAF&);
AAF atan(const AAF&);
AAF tanh(const AAF&);
AAF heaviside(const AAF&);
#ifdef USE_AAF_EXTENSIONS
// binary functions
AAF mos(AAF&, AAF&);
AAF arg(AAF&, AAF&);
AAF mag(const AAF&, const AAF&);
AAF magdb(AAF&, AAF&);
#endif
// AAF inline methods
/************************************************************
* Method: getcenter
* Author & Date: ??? - ???
* Description:
* Returns the central value of the AAF
*
* Input : -
* Output : double : center value
************************************************************/
inline double AAF::getcenter() const
{
return cvalue;
}
/************************************************************
* Method: power
* Author & Date: Darius Grabowski - 10.05.2005
* Description:
* Computes the power fct.
*
* Input : const AAF & : AAF argument
* int : exponent
* Output : AAF : AAF result
************************************************************/
inline AAF power(const AAF& P, int exp)
{
return (P ^ exp);
}
/************************************************************
* Method: sqr
* Author & Date: Darius Grabowski - 10.05.2005
* Description:
* Computes the square fct.
*
* Input : const AAF & : AAF argument
* Output : AAF : AAF result
************************************************************/
inline AAF sqr(const AAF& P)
{
return (P ^ 2);
}
/************************************************************
* Method: pow
* Author & Date: Darius Grabowski - 10.05.2005
* Description:
* Computes the power fct.
*
* Input : const AAF & : AAF argument
* int : exponent
* Output : AAF : AAF result
************************************************************/
inline AAF pow(const AAF& P, int exp)
{
return (P ^ exp);
}
/************************************************************
* Method: setDefault
* Author & Date: ??? - ???
* Description:
* sets the highest symbol, this function must be treaten
* carefully !!!
*
* Input : unsigned : highest symbol index
* Output : -
************************************************************/
#ifdef USE_AAF_EXTENSIONS
inline void AAF::setDefault(const unsigned val)
{
last = val;
}
#endif
/************************************************************
* Method: getDefault
* Author & Date: Darius Grabowski - 14.06.2005
* Description:
* returns the highest symbol
*
* Input : -
* Output : unsigned : highest symbol in use
************************************************************/
inline unsigned AAF::getDefault(void)
{
return last;
}
/************************************************************
* Method: inclast
* Author & Date: ??? - ???
* Description:
* increases the highest symbol
*
* Input : -
* Output : unsigned : highest symbol to use
************************************************************/
inline unsigned AAF::inclast()
{
return ++last;
}
/************************************************************
* Method: getlength
* Author & Date: ??? - ???
* Description:
* returns the number of partial deviations
*
* Input : -
* Output : unsigned : number of partial deviations
************************************************************/
inline unsigned AAF::getlength() const
{
return length;
}
/************************************************************
* Method: getFirstIndex
* Author & Date: Darius Grabowski - 05/2005
* Description:
* returns the index of the first deviation
*
* Input : -
* Output : unsigned : first index
************************************************************/
inline unsigned AAF::getFirstIndex(void) const
{
if (length > 0) {
return indexes[0];
}
return 0;
}
/************************************************************
* Method: getLastIndex
* Author & Date: Darius Grabowski - 05/2005
* Description:
* returns the index of the last deviation
*
* Input : -
* Output : unsigned : last index
************************************************************/
inline unsigned AAF::getLastIndex(void) const
{
if (length > 0) {
return indexes[length - 1];
}
return 0;
}
/************************************************************
* Method: getApproximationType
* Author & Date: Darius Grabowski - 05/2005
* Description:
* returns the approximation type
*
* Input : -
* Output : tApproximationType : approximation type
************************************************************/
inline tApproximationType AAF::getApproximationType(void)
{
return approximationType;
}
/************************************************************
* Method: setApproximationType
* Author & Date: Darius Grabowski - 05/2005
* Description:
* sets the approximation type
*
* Input : tApproximationType : approximation type
* Output : -
************************************************************/
inline void AAF::setApproximationType(tApproximationType t)
{
approximationType = t;
}
inline unsigned int AAF::get_class_size(void)
{
return (sizeof(this) + length * sizeof(indexes) + size * sizeof(deviations));
}
inline unsigned int AAF::get_class_size_index(void)
{
return (length * sizeof(indexes));
}
inline unsigned int AAF::get_class_size_deviations(void)
{
return (size * sizeof(deviations));
}
#endif // AA_AAF_H