Halton class
#include <ldsgen/ilds.hpp>
Halton sequence generator.
* Integer Halton([2,3], [2,2]): * pop() -> [1, 4] (VdC_i(2,2,2), VdC_i(2,3,2)) * pop() -> [2, 5] (next in each sequence) * ... *
Constructors, destructors, conversion operators
Public functions
Function documentation
ildsgen:: Halton:: Halton(const std::array<unsigned long, 2>& base,
const std::array<unsigned int, 2>& scale) explicit
Construct a new Halton object.
| Parameters | |
|---|---|
| base in | array of two unsigned long values representing the bases for the two Van der Corput generators |
| scale in | array of two unsigned int values representing the number of digits for each generator |
Constructs a Halton sequence generator with the specified bases and scale values.