Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::RandomEngine Class Reference
Inheritance diagram for duckdb::RandomEngine:
Collaboration diagram for duckdb::RandomEngine:

Public Member Functions

 RandomEngine (int64_t seed=-1)
 
double NextRandom (double min, double max)
 Generate a random number between min and max.
 
double NextRandom ()
 Generate a random number between 0 and 1.
 
double NextRandom32 ()
 Generate a random number between 0 and 1, using 32-bits as a base.
 
double NextRandom32 (double min, double max)
 
uint32_t NextRandomInteger32 (uint32_t min, uint32_t max)
 
uint32_t NextRandomInteger ()
 
uint32_t NextRandomInteger (uint32_t min, uint32_t max)
 
uint64_t NextRandomInteger64 ()
 
void SetSeed (uint64_t seed)
 
void RandomData (duckdb::data_ptr_t data, duckdb::idx_t len)
 

Static Public Member Functions

static RandomEngineGet (ClientContext &context)
 

Public Attributes

mutex lock
 

Private Attributes

unique_ptr< RandomStaterandom_state
 

The documentation for this class was generated from the following file: