Rev | Line | |
---|
[9262] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 6 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 7 | using HeuristicLab.Common;
|
---|
| 8 |
|
---|
| 9 | namespace HeuristicLab.Problems.TradeRules
|
---|
| 10 | {
|
---|
| 11 | class Lag : Symbol
|
---|
| 12 | {
|
---|
| 13 | private const int minimumArity = 1;
|
---|
| 14 | private const int maximumArity = 1;
|
---|
| 15 |
|
---|
| 16 | public override int MinimumArity
|
---|
| 17 | {
|
---|
| 18 | get { return minimumArity; }
|
---|
| 19 | }
|
---|
| 20 | public override int MaximumArity
|
---|
| 21 | {
|
---|
| 22 | get { return maximumArity; }
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | [StorableConstructor]
|
---|
| 26 | private Lag(bool deserializing) : base(deserializing) { }
|
---|
| 27 | private Lag(Lag original, Cloner cloner) : base(original, cloner) { }
|
---|
| 28 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
| 29 | {
|
---|
| 30 | return new Lag(this, cloner);
|
---|
| 31 | }
|
---|
| 32 | public Lag() : base("Lag", "Symbol that represents the Lag value in a time") { }
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.