Rev | Line | |
---|
[13659] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
| 6 | using HeuristicLab.Core;
|
---|
| 7 |
|
---|
| 8 | namespace HeuristicLab.Algorithms.DataAnalysis.MctsSymbolicRegression.Policies {
|
---|
| 9 | public interface IPolicy : IItem {
|
---|
| 10 | int Select(IEnumerable<IActionStatistics> actions, IRandom random);
|
---|
| 11 | void Update(IActionStatistics action, double q);
|
---|
| 12 | IActionStatistics CreateActionStatistics();
|
---|
| 13 | }
|
---|
| 14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.