mirror of
https://github.com/1bardesign/batteries.git
synced 2024-11-10 02:31:48 +00:00
added todo for tablex.weighted_random, removed returning the weight value as multi-return wasn't documented and could break in some circumstances
This commit is contained in:
parent
7aa476a58c
commit
31bfe92d37
15
tablex.lua
15
tablex.lua
@ -202,24 +202,29 @@ function tablex.take_random(t, r)
|
|||||||
return table.remove(t, tablex.random_index(t, r))
|
return table.remove(t, tablex.random_index(t, r))
|
||||||
end
|
end
|
||||||
|
|
||||||
--return a random index based on weights provided
|
--return a random index based on weights provided (or nil if it's empty)
|
||||||
--Example: { 0.3, 1, 6, 0.5 } (3rd index most likely)
|
-- { 0.3, 1, 6, 0.5 } -> (3rd index most likely)
|
||||||
|
-- possible todo:
|
||||||
|
-- provide normalisation outside of this function, require normalised weights
|
||||||
|
-- provide table of values _and_ weights and return the value
|
||||||
function tablex.weighted_random(t, r)
|
function tablex.weighted_random(t, r)
|
||||||
if #t == 0 then
|
if #t == 0 then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
local sum = 0
|
local sum = 0
|
||||||
for _, weight in ipairs (t) do
|
for _, weight in ipairs(t) do
|
||||||
sum = sum + weight
|
sum = sum + weight
|
||||||
end
|
end
|
||||||
local rnd = _random(nil, nil, r) * sum
|
local rnd = _random(nil, nil, r) * sum
|
||||||
sum = 0
|
sum = 0
|
||||||
for i, weight in ipairs (t) do
|
for i, weight in ipairs(t) do
|
||||||
sum = sum + weight
|
sum = sum + weight
|
||||||
if rnd <= sum then
|
if rnd <= sum then
|
||||||
return i, weight
|
return i
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
--shouldn't get here but safety if using a random that returns >= 1
|
||||||
|
return #t
|
||||||
end
|
end
|
||||||
|
|
||||||
--shuffle the order of a table
|
--shuffle the order of a table
|
||||||
|
Loading…
Reference in New Issue
Block a user