0
3
0
... | ... |
@@ -75,4 +75,2 @@ |
75 | 75 |
///\brief Mersenne Twister random number generator |
76 |
/// |
|
77 |
///\author Balazs Dezso |
|
78 | 76 |
|
... | ... |
@@ -518,4 +516,2 @@ |
518 | 516 |
/// random numbers. |
519 |
/// |
|
520 |
/// \author Balazs Dezso |
|
521 | 517 |
class Random { |
... | ... |
@@ -523,3 +519,3 @@ |
523 | 519 |
|
524 |
// |
|
520 |
// Architecture word |
|
525 | 521 |
typedef unsigned long Word; |
... | ... |
@@ -725,4 +721,4 @@ |
725 | 721 |
|
722 |
/// Gauss distribution with given mean and standard deviation |
|
726 | 723 |
/// \sa gauss() |
727 |
/// |
|
728 | 724 |
double gauss(double mean,double std_dev) |
... | ... |
@@ -816,2 +812,5 @@ |
816 | 812 |
/// Uniform distribution on the full unit circle. |
813 |
|
|
814 |
/// Uniform distribution on the full unit circle. |
|
815 |
/// |
|
817 | 816 |
dim2::Point<double> disc() |
... | ... |
@@ -50,5 +50,9 @@ |
50 | 50 |
///\sa Tolerance<int> |
51 |
#if defined __GNUC__ && !defined __STRICT_ANSI__ |
|
51 | 52 |
///\sa Tolerance<long long int> |
53 |
#endif |
|
52 | 54 |
///\sa Tolerance<unsigned int> |
55 |
#if defined __GNUC__ && !defined __STRICT_ANSI__ |
|
53 | 56 |
///\sa Tolerance<unsigned long long int> |
57 |
#endif |
|
54 | 58 |
|
... | ... |
@@ -132,3 +136,3 @@ |
132 | 136 |
///Returns \c true if \c a is \e surely non-zero |
133 |
bool nonZero(Value a) const { return positive(a)||negative(a); } |
|
137 |
bool nonZero(Value a) const { return positive(a)||negative(a); } |
|
134 | 138 |
|
... | ... |
@@ -183,3 +187,3 @@ |
183 | 187 |
///Returns \c true if \c a is \e surely non-zero |
184 |
bool nonZero(Value a) const { return positive(a)||negative(a); } |
|
188 |
bool nonZero(Value a) const { return positive(a)||negative(a); } |
|
185 | 189 |
|
... | ... |
@@ -234,3 +238,3 @@ |
234 | 238 |
///Returns \c true if \c a is \e surely non-zero |
235 |
bool nonZero(Value a) const { return positive(a)||negative(a); } |
|
239 |
bool nonZero(Value a) const { return positive(a)||negative(a); } |
|
236 | 240 |
|
... | ... |
@@ -267,3 +271,3 @@ |
267 | 271 |
///Returns \c true if \c a is \e surely non-zero |
268 |
static bool nonZero(Value a) { return a!=0; } |
|
272 |
static bool nonZero(Value a) { return a!=0; } |
|
269 | 273 |
|
... | ... |
@@ -300,3 +304,3 @@ |
300 | 304 |
///Returns \c true if \c a is \e surely non-zero |
301 |
static bool nonZero(Value a) { return a!=0; } |
|
305 |
static bool nonZero(Value a) { return a!=0; } |
|
302 | 306 |
|
... | ... |
@@ -334,3 +338,3 @@ |
334 | 338 |
///Returns \c true if \c a is \e surely non-zero |
335 |
static bool nonZero(Value a) { return a!=0;} |
|
339 |
static bool nonZero(Value a) { return a!=0;} |
|
336 | 340 |
|
... | ... |
@@ -367,3 +371,3 @@ |
367 | 371 |
///Returns \c true if \c a is \e surely non-zero |
368 |
static bool nonZero(Value a) { return a!=0;} |
|
372 |
static bool nonZero(Value a) { return a!=0;} |
|
369 | 373 |
|
... | ... |
@@ -404,3 +408,3 @@ |
404 | 408 |
///Returns \c true if \c a is \e surely non-zero |
405 |
static bool nonZero(Value a) { return a!=0;} |
|
409 |
static bool nonZero(Value a) { return a!=0;} |
|
406 | 410 |
|
... | ... |
@@ -439,3 +443,3 @@ |
439 | 443 |
///Returns \c true if \c a is \e surely non-zero |
440 |
static bool nonZero(Value a) { return a!=0;} |
|
444 |
static bool nonZero(Value a) { return a!=0;} |
|
441 | 445 |
|
0 comments (0 inline)