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