mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Rename WeightedChooser's method Put to Add, a better name
This commit is contained in:
parent
291455f0b7
commit
769e8bedba
3 changed files with 6 additions and 6 deletions
|
@ -182,7 +182,7 @@ func (e *externalMetadata) SimilarSongs(ctx context.Context, id string, count in
|
|||
|
||||
weight := topCount * (4 + artistWeight)
|
||||
for _, mf := range topSongs {
|
||||
weightedSongs.Put(mf, weight)
|
||||
weightedSongs.Add(mf, weight)
|
||||
weight -= 4
|
||||
}
|
||||
return nil
|
||||
|
|
|
@ -16,7 +16,7 @@ func NewWeightedRandomChooser() *WeightedChooser {
|
|||
return &WeightedChooser{}
|
||||
}
|
||||
|
||||
func (w *WeightedChooser) Put(value interface{}, weight int) {
|
||||
func (w *WeightedChooser) Add(value interface{}, weight int) {
|
||||
w.entries = append(w.entries, value)
|
||||
w.weights = append(w.weights, weight)
|
||||
w.totalWeight += weight
|
||||
|
|
|
@ -10,7 +10,7 @@ var _ = Describe("WeightedRandomChooser", func() {
|
|||
BeforeEach(func() {
|
||||
w = NewWeightedRandomChooser()
|
||||
for i := 0; i < 10; i++ {
|
||||
w.Put(i, i)
|
||||
w.Add(i, i)
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -23,14 +23,14 @@ var _ = Describe("WeightedRandomChooser", func() {
|
|||
|
||||
It("returns the sole item", func() {
|
||||
w = NewWeightedRandomChooser()
|
||||
w.Put("a", 1)
|
||||
w.Add("a", 1)
|
||||
Expect(w.GetAndRemove()).To(Equal("a"))
|
||||
})
|
||||
|
||||
It("fails when trying to choose from empty set", func() {
|
||||
w = NewWeightedRandomChooser()
|
||||
w.Put("a", 1)
|
||||
w.Put("b", 1)
|
||||
w.Add("a", 1)
|
||||
w.Add("b", 1)
|
||||
Expect(w.GetAndRemove()).To(BeElementOf("a", "b"))
|
||||
Expect(w.GetAndRemove()).To(BeElementOf("a", "b"))
|
||||
_, err := w.GetAndRemove()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue