Free cookie consent management tool by TermsFeed Policy Generator

source: branches/TSMemory/HeuristicLab.Algorithms.TabuSearch/3.3/Memory.cs @ 5128

Last change on this file since 5128 was 5128, checked in by svonolfe, 14 years ago

Added generic TS memory (#1343)

File size: 2.2 KB
Line 
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 HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Operators;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using System.Collections.Generic;
28using HeuristicLab.Optimization;
29
30namespace HeuristicLab.Algorithms.TabuSearch {
31  [Item("Memory", "A generic memory structure for tabu search.")]
32  [StorableClass]
33  public class Memory : Item, IMemory {
34    [Storable]
35    private IDictionary<string, IItem> memory;
36   
37    [StorableConstructor]
38    protected Memory(bool deserializing) : base(deserializing) { }
39    protected Memory(Memory original, Cloner cloner)
40      : base(original, cloner) {
41      memory = new Dictionary<string, IItem>();
42      foreach (string key in original.memory.Keys) {
43        memory[key] = cloner.Clone(original.memory[key]);
44      }
45    }
46
47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new Memory(this, cloner);
49    }
50
51    public Memory()
52      : base() {
53        memory = new Dictionary<string, IItem>();
54    }
55
56    public void Put(string key, IItem item) {
57      memory[key] = item;
58    }
59
60    public IItem Get(string key) {
61      if (memory.ContainsKey(key))
62        return memory[key];
63      else
64        return null;
65    }
66
67    public void Reset() {
68      memory.Clear();
69    }
70  }
71}
Note: See TracBrowser for help on using the repository browser.