Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
5
bool 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
1
select_inchan
Function · 0.50
Calls
1
pseudorand_double
Function · 0.85
Tested by
no test coverage detected