[4898] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 26 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols {
|
---|
| 29 | [StorableClass]
|
---|
| 30 | [Item("Set Memory", "Represents a set memory operation.")]
|
---|
| 31 | public sealed class SetMem : Symbol {
|
---|
| 32 | #region Propeties
|
---|
| 33 | [Storable]
|
---|
| 34 | private int minAddress;
|
---|
| 35 | public int MinAddress {
|
---|
| 36 | get { return minAddress; }
|
---|
| 37 | set {
|
---|
| 38 | if (value != minAddress) {
|
---|
| 39 | minAddress = value;
|
---|
| 40 | OnChanged(EventArgs.Empty);
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
| 44 | [Storable]
|
---|
| 45 | private int maxAddress;
|
---|
| 46 | public int MaxAddress {
|
---|
| 47 | get { return maxAddress; }
|
---|
| 48 | set {
|
---|
| 49 | if (value != maxAddress) {
|
---|
| 50 | maxAddress= value;
|
---|
| 51 | OnChanged(EventArgs.Empty);
|
---|
| 52 | }
|
---|
| 53 | }
|
---|
| 54 | }
|
---|
| 55 | #endregion
|
---|
| 56 | [StorableConstructor]
|
---|
| 57 | private SetMem(bool deserializing) : base(deserializing) { }
|
---|
| 58 | private SetMem(SetMem original, Cloner cloner)
|
---|
| 59 | : base(original, cloner) {
|
---|
| 60 | minAddress = original.minAddress;
|
---|
| 61 | maxAddress = original.maxAddress;
|
---|
| 62 | }
|
---|
| 63 | public SetMem()
|
---|
| 64 | : base("SetMem", "Represents a set memory operation.") {
|
---|
| 65 | minAddress = 0;
|
---|
| 66 | maxAddress = 3;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | public override SymbolicExpressionTreeNode CreateTreeNode() {
|
---|
| 70 | return new SetMemTreeNode(this);
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 74 | return new SetMem(this, cloner);
|
---|
| 75 | }
|
---|
| 76 | }
|
---|
| 77 | }
|
---|