pcg_basic.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * PCG Random Number Generation for C.
  3. *
  4. * Copyright 2014 Melissa O'Neill <oneill@pcg-random.org>
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * For additional information about the PCG random number generation scheme,
  19. * including its license and other licensing options, visit
  20. *
  21. * http://www.pcg-random.org
  22. */
  23. #ifndef PCG_BASIC_H_
  24. #define PCG_BASIC_H_
  25. #include <open62541/config.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. typedef struct pcg_state_setseq_64 {
  30. uint64_t state; /* RNG state. All values are possible. */
  31. uint64_t inc; /* Controls which RNG sequence (stream) is selected. Must
  32. * *always* be odd. */
  33. } pcg32_random_t;
  34. #define PCG32_INITIALIZER { 0x853c49e6748fea9bULL, 0xda3e39cb94b95bdbULL }
  35. void pcg32_srandom_r(pcg32_random_t* rng, uint64_t initial_state, uint64_t initseq);
  36. uint32_t pcg32_random_r(pcg32_random_t* rng);
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif /* PCG_BASIC_H_ */