MCPcopy Create free account
hub / github.com/ElementsProject/lightning / random_select

Function random_select

common/random_select.c:5–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <common/random_select.h>
4
5bool random_select(double weight, double *tot_weight)
6{
7 *tot_weight += weight;
8 if (weight == 0)
9 return false;
10
11 return pseudorand_double() <= weight / *tot_weight;
12}

Callers 2

select_inchanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected