Files
rippled/src/ripple
Nik Bougalis 284ed38471 Reduce calls to std::random_device:
Existing per-thread PRNGs are individually initialized using calls
to std::random_device.

If merged, this commit will use a single PRNG, initialized from
std::random_device on startup, to seed the thread-specific PRNGs.

Acknowledgements:
    Thomas Snider, who reported this issue to Ripple on April 8, 2020.
2020-04-14 19:42:49 -07:00
..
2020-02-25 19:21:50 -08:00
2019-01-18 12:13:21 -08:00
2020-01-08 18:44:01 -05:00
2020-02-25 19:21:55 -08:00
2019-11-27 16:58:56 -08:00
2020-04-07 16:25:09 -07:00
2020-02-25 19:21:50 -08:00
2018-03-02 07:37:15 -08:00

Ripple Source Guidelines

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem