Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 12967 was 12924, checked in by gkronber, 9 years ago

#2471

  • implemented a demo for value approximation with gbt and a trivial feature function
File size: 467 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Core;
7
8namespace HeuristicLab.Algorithms.IteratedSymbolicExpressionConstruction {
9  // represents the state value function (V(s))
10  public interface IStateValueFunction : IItem {
11    double Value(object state);
12    void Update(object state, double observedQuality);
13    IStateFunction StateFunction { get; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.