Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcaspers committed Nov 11, 2023
1 parent d0b22ae commit 13c5dcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ql/math/randomnumbers/burley2020sobolrsg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
FOR A PARTICULAR PURPOSE. See the license for more details.
*/

/*! \file burley2020scrambling.hpp
/*! \file burley2020sobolrsg.hpp
\brief scrambled Sobol sequence following Burley, 2020
*/

Expand Down
2 changes: 1 addition & 1 deletion ql/math/randomnumbers/sobolrsg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78793,7 +78793,7 @@ namespace QuantLib {
}
}
} else {
std::fill(integerSequence_.begin(), integerSequence_.end(), 0.0);
std::fill(integerSequence_.begin(), integerSequence_.end(), 0u);
std::uint_least32_t mask = 1;
for (Size index = 0; index < bits_; index++) {
if ((N & mask) != 0U) {
Expand Down

0 comments on commit 13c5dcf

Please sign in to comment.