Last change
on this file since 13398 was
12923,
checked in by gkronber, 9 years ago
|
#2471
- refactoring to use state value function V(s) instead of state/action value function Q(s,a)
- added test case for artificial ant problem
|
File size:
554 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Algorithms.IteratedSymbolicExpressionConstruction {
|
---|
8 | // represents state value functions that use a table representation for states and can therefore return the number of visits to each state
|
---|
9 | public interface ITabularStateValueFunction : IStateValueFunction {
|
---|
10 | double ValueVariance(object state); // estimate for the variance of observed rewards in a state
|
---|
11 | int Tries(object state);
|
---|
12 | }
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.