random.inl
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #ifndef LASS_GUARDIAN_OF_INCLUSION_NUM_RANDOM_INL
00046 #define LASS_GUARDIAN_OF_INCLUSION_NUM_RANDOM_INL
00047
00048 #include "num_common.h"
00049 #include "random.h"
00050
00051 namespace lass
00052 {
00053 namespace num
00054 {
00055
00056
00057
00058
00059
00060 inline const RandomStandard::TValue RandomStandard::operator ()() const
00061 {
00062 return rand();
00063 }
00064
00065
00066
00067
00068
00069
00070 inline const RandomStandard::TValue RandomStandard::operator ()(const TValue supremum) const
00071 {
00072 return rand() % supremum;
00073 }
00074
00075
00076
00077 template <typename OutputIterator>
00078 OutputIterator RandomStandard::getState(OutputIterator first) const
00079 {
00080 return first;
00081 }
00082
00083
00084
00085 template <typename InputIterator>
00086 void RandomStandard::setState(InputIterator first, InputIterator last)
00087 {
00088 LASS_ASSERT(first == last);
00089 }
00090
00091
00092
00093
00094
00095
00096
00097
00098 inline const RandomParkMiller::TValue RandomParkMiller::operator ()(const TValue supremum)
00099 {
00100 return (*this)() % supremum;
00101 }
00102
00103
00104
00105 template <typename OutputIterator>
00106 OutputIterator RandomParkMiller::getState(OutputIterator first) const
00107 {
00108 *first = buffer_;
00109 return first;
00110 }
00111
00112
00113
00114 template <typename InputIterator>
00115 void RandomParkMiller::setState(InputIterator first, InputIterator last)
00116 {
00117 LASS_ASSERT(first != last);
00118 buffer_ = *first++;
00119 LASS_ASSERT(first == last);
00120 }
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132 template <typename ForwardIterator>
00133 RandomMT19937::RandomMT19937(ForwardIterator first, ForwardIterator last)
00134 {
00135 seed(first, last);
00136 }
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146 template <typename ForwardIterator>
00147 void RandomMT19937::seed(ForwardIterator first, ForwardIterator last)
00148 {
00149 LASS_META_ASSERT(sizeof(TValue) * lass::bitsPerByte == 32,
00150 if_TValue_is_32_bits_then_the_wordMasks_are_not_necessary);
00151
00152 seed(19650218UL);
00153
00154 const size_t keySize = std::distance(first, last);
00155 int i = 1;
00156 int j = 0;
00157 ForwardIterator key = first;
00158 for (size_t k = (stateSize_ > keySize ? stateSize_ : keySize); k > 0; --k)
00159 {
00160 state_[i] = (state_[i] ^ ((state_[i - 1] ^ (state_[i - 1] >> 30)) * 1664525UL)) + *key + j;
00161
00162
00163 ++i;
00164 if (i >= stateSize_)
00165 {
00166 state_[0] = state_[stateSize_ - 1];
00167 i = 1;
00168 }
00169
00170 ++key;
00171 ++j;
00172 if (key == last)
00173 {
00174 key = first;
00175 j = 0;
00176 }
00177 LASS_ASSERT(static_cast<int>(keySize) >= 0);
00178 LASS_ASSERT(j < static_cast<int>(keySize));
00179 }
00180 for (size_t k = stateSize_ - 1; k > 0; --k)
00181 {
00182 state_[i] = (state_[i] ^ ((state_[i - 1] ^ (state_[i - 1] >> 30)) * 1566083941UL)) - i;
00183
00184 ++i;
00185 if (i >= stateSize_)
00186 {
00187 state_[0] = state_[stateSize_ - 1];
00188 i = 1;
00189 }
00190 }
00191
00192 state_[0] = 0x80000000;
00193 }
00194
00195
00196
00197
00198
00199
00200 inline const RandomMT19937::TValue RandomMT19937::operator ()(const TValue supremum)
00201 {
00202 return (*this)() % supremum;
00203 }
00204
00205
00206
00207 template <typename OutputIterator>
00208 OutputIterator RandomMT19937::getState(OutputIterator first) const
00209 {
00210 *first++ = index_;
00211 return std::copy(state_, state_ + stateSize_, first);
00212 }
00213
00214
00215
00216 template <typename InputIterator>
00217 void RandomMT19937::setState(InputIterator first, InputIterator last)
00218 {
00219 LASS_ASSERT(first != last);
00220 index_ = *first++;
00221 LASS_ASSERT(first != last);
00222 TValue* end = std::copy(first, last, state_);
00223 LASS_ASSERT(end == state_ + stateSize_);
00224 }
00225
00226
00227
00228 }
00229
00230 }
00231
00232 #endif
00233
00234