gambit/gambit.go
2023-07-06 09:59:17 +01:00

13 lines
172 B
Go

package gambit
type Bandit interface {
Select(r float64) int
Update(a int, r float64) error
Reset(n int) error
Size() int
Count(res []int)
Reward(res []float64)
}