-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlognum.hpp
219 lines (173 loc) · 3.87 KB
/
lognum.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
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
/*
* BEANDisco: class for handling number as logarithms
*
* Copyright 2011 Teppo Niinimäki <teppo.niinimaki(at)helsinki.fi>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//#include <cmath>
//#include <cfloat>
#include <limits>
//#define NDEBUG
#include <cassert>
//#undef NDEBUG
#ifndef LOGNUM_HPP
#define LOGNUM_HPP
//template<typename T>
//struct __identity { typedef T type; };
template <class T>
struct Lognum {
private:
T logx_;
public:
Lognum() {
logx_ = -std::numeric_limits<T>::infinity();
}
template <class U>
Lognum(U x) {
logx_ = log(x);
}
Lognum operator=(Lognum x) {
logx_ = x.logx_;
return *this;
}
template <class U>
Lognum operator=(U x) {
logx_ = log(x);
return *this;
}
void setLog(T e) {
logx_ = e;
}
T getLog() {
return logx_;
}
T getVal() {
return exp(logx_);
}
template <typename F>
operator F() {
return (F) getVal();
}
//template <typename FL>
//operator Lognum<FL>() {
// Lognum<FL> tmp;
// tmp.setLog(getLog());
// return tmp;
//}
Lognum operator+(Lognum b) {
Lognum res;
if (logx_ == -std::numeric_limits<T>::infinity())
res = b;
else if (b.logx_ == -std::numeric_limits<T>::infinity())
res = *this;
else
res.logx_ = (logx_ > b.logx_) ?
logx_ + log1p(exp(b.logx_ - logx_)) :
b.logx_ + log1p(exp(logx_ - b.logx_));
//logx_ + log(1.0 + exp(b.logx_ - logx_)) :
//b.logx_ + log(1.0 + exp(logx_ - b.logx_));
return res;
}
Lognum operator+=(Lognum b) {
//logx_ += log(1 + exp(b.logx_ - logx_));
*this = *this + b;
return *this;
}
Lognum operator-(Lognum b) {
//assert(logx_ >= b.logx_);
Lognum res;
if (logx_ == -std::numeric_limits<T>::infinity())
res.logx_ = -std::numeric_limits<T>::infinity();
else if (logx_ < b.logx_)
res.logx_ = -std::numeric_limits<T>::infinity();
else
res.logx_ = logx_ + log1p(-exp(b.logx_ - logx_));
//res.logx_ = logx_ + log(1.0 - exp(b.logx_ - logx_));
return res;
}
Lognum operator-=(Lognum b) {
*this = *this - b;
return *this;
}
Lognum operator*(Lognum b) {
Lognum res;
res.logx_ = logx_ + b.logx_;
return res;
}
Lognum operator*=(Lognum b) {
logx_ += b.logx_;
return *this;
}
Lognum operator/(Lognum b) {
Lognum res;
res.logx_ = logx_ - b.logx_;
return res;
}
Lognum operator/=(Lognum b) {
logx_ -= b.logx;
return *this;
}
bool operator<(Lognum b) {
return logx_ < b.logx_;
}
bool operator>(Lognum b) {
return logx_ > b.logx_;
}
bool operator<=(Lognum b) {
return logx_ <= b.logx_;
}
bool operator>=(Lognum b) {
return logx_ >= b.logx_;
}
};
template <typename T>
T log(Lognum<T> x){
return x.getLog();
}
template <typename T, typename F>
T to(F x){
return T(x);
}
//template <typename T, typename FL>
//T to(Lognum<FL> x){
// return to<T>(x.getVal());
//}
//template <typename T>
//T to(Lognum<T> x){
// return x.getVal();
//}
//template <typename T, typename FL>
//T to(Lognum<FL> x){
// return T(x.getVal());
//}
//template <typename TL, typename FL>
//Lognum<TL> to<Lognum<TL> >(Lognum<FL> x){
// return Lognum<TL>(x);
//}
//template <class U>
//U to(double x){
// return U(x);
//}
//
//template <class U>
//U to(Lognum<double> x){
// return U(x);
//}
//
//template <>
//double to<double>(Lognum<double> x){
// return x.getVal();
//}
#endif