Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MemoryOperations/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/ReadMem.cs @ 6089

Last change on this file since 6089 was 4898, checked in by gkronber, 14 years ago

Added symbol and tree-node classes for ReadMem and SetMem. #1290

File size: 2.4 KB
RevLine 
[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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols {
29  [StorableClass]
30  [Item("Read Memory", "Represents a read memory operation.")]
31  public sealed class ReadMem : 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 ReadMem(bool deserializing) : base(deserializing) { }
58    private ReadMem(ReadMem original, Cloner cloner)
59      : base(original, cloner) {
60      minAddress = original.minAddress;
61      maxAddress = original.maxAddress;
62    }
63    public ReadMem()
64      : base("ReadMem", "Represents a read memory operation.") {
65      minAddress = 0;
66      maxAddress = 3;
67    }
68
69    public override SymbolicExpressionTreeNode CreateTreeNode() {
70      return new ReadMemTreeNode(this);
71    }
72
73    public override IDeepCloneable Clone(Cloner cloner) {
74      return new ReadMem(this, cloner);
75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.