Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MCTS-SymbReg-2796/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/IConstraintHandler.cs @ 15410

Last change on this file since 15410 was 15410, checked in by gkronber, 7 years ago

#2796 worked on MCTS (removing constraint handling and introducing state unification instead)

File size: 553 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.DataAnalysis.MctsSymbolicRegression {
8  public interface IConstraintHandler {
9    bool IsInvalidExpression { get;    }
10    bool IsAllowedFollowState(int currentState, int followState);
11    void Reset();
12    void StartTerm();
13    void StartFactor(int state);
14    void AddVarToCurrentFactor(int state);
15    void StartNewTermInPoly();
16    void EndFactor();
17    void EndTerm();
18  }
19}
Note: See TracBrowser for help on using the repository browser.