Last change
on this file since 13398 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 | |
---|
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.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.