Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP/Expressions/StatefullExpression.cs @ 14398

Last change on this file since 14398 was 14398, checked in by pkimmesw, 8 years ago

#2665 Expressions are splitted into StatefullExpressions and StatelessExpressions, Added traits for tests

File size: 341 bytes
Line 
1using HeuristicLab.Common;
2
3namespace HeuristicLab.Algorithms.PushGP.Expressions
4{
5    public abstract class StatefullExpression : Expression
6    {
7        protected StatefullExpression()
8        { }
9
10        protected StatefullExpression(StatefullExpression origin, Cloner cloner) : base(origin, cloner)
11        { }
12    }
13}
Note: See TracBrowser for help on using the repository browser.