1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Encodings.VariableVector {
|
---|
28 | [Item("Variable", "")]
|
---|
29 | [StorableClass]
|
---|
30 | public abstract class Variable<T> : Item, IVariable {
|
---|
31 |
|
---|
32 | [Storable]
|
---|
33 | protected string variableName;
|
---|
34 | public string VariableName {
|
---|
35 | get { return variableName; }
|
---|
36 | }
|
---|
37 |
|
---|
38 | public abstract int VirtualLength { get; }
|
---|
39 |
|
---|
40 | public Type VariableType { get { return typeof(T); } }
|
---|
41 |
|
---|
42 | [StorableConstructor]
|
---|
43 | protected Variable(bool deserializing) : base(deserializing) { }
|
---|
44 | protected Variable(Variable<T> original, Cloner cloner)
|
---|
45 | : base(original, cloner) {
|
---|
46 | this.variableName = (string)original.variableName.Clone();
|
---|
47 | }
|
---|
48 | public Variable() : base() { }
|
---|
49 | public Variable(string variableName)
|
---|
50 | : base() {
|
---|
51 | this.variableName = variableName;
|
---|
52 | }
|
---|
53 |
|
---|
54 | public abstract IVariable GetEmptyCopy();
|
---|
55 | public abstract IVariable GetSetCopy();
|
---|
56 |
|
---|
57 | public abstract void Randomize(IRandom random, double changeSymbolProbability);
|
---|
58 |
|
---|
59 | public virtual bool MatchVariable(IVariable target) { throw new NotSupportedException("This method is not supported by this kind of Variable."); }
|
---|
60 | public abstract bool Match(T target);
|
---|
61 |
|
---|
62 | public abstract bool MatchInput(string target);
|
---|
63 |
|
---|
64 | public abstract bool Identical(IVariable target);
|
---|
65 |
|
---|
66 | public abstract double GetGenerality();
|
---|
67 |
|
---|
68 | public abstract bool IsGreaterThanOrEquallyGeneral(IVariable target);
|
---|
69 |
|
---|
70 | public abstract IVariable CrossParentsAtPosition(IVariable parent2, int pos);
|
---|
71 |
|
---|
72 | public abstract void Manipulate(IRandom random, string stringValue, int pos);
|
---|
73 |
|
---|
74 | public abstract void Manipulate(IRandom random, string stringValue, int pos, double spreadPercentage);
|
---|
75 |
|
---|
76 | public abstract void Cover(IRandom random, string stringValue, double changeSymbolProbability);
|
---|
77 | }
|
---|
78 | }
|
---|