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:
592 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 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
8 |
|
---|
9 | namespace HeuristicLab.Algorithms.IteratedSymbolicExpressionConstruction {
|
---|
10 | // creates a state from the information available at sequential derivation steps of symbolic expression trees
|
---|
11 | public interface IStateFunction : IItem {
|
---|
12 | object CreateState(ISymbolicExpressionTreeNode root, List<ISymbol> actions, ISymbolicExpressionTreeNode parentNode, int childIdx);
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.