Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Algorithms.IteratedSentenceConstruction/HeuristicLab.Algorithms.IteratedSymbolicExpressionConstruction/3.3/Interfaces/ITabularStateValueFunction.cs @ 12967

Last change on this file since 12967 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 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace 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.