mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
12 lines
236 B
C
12 lines
236 B
C
|
#include <common/pseudorand.h>
|
||
|
#include <common/random_select.h>
|
||
|
|
||
|
bool random_select(double weight, double *tot_weight)
|
||
|
{
|
||
|
*tot_weight += weight;
|
||
|
if (weight == 0)
|
||
|
return false;
|
||
|
|
||
|
return pseudorand_double() <= weight / *tot_weight;
|
||
|
}
|