Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MemPRAlgorithm/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Moves/MergeMove.cs @ 14477

Last change on this file since 14477 was 14477, checked in by abeham, 7 years ago

#2701:

  • Added TryGetBy(First|Second) method to BidirectionalDictionary
  • Updated linear linkage encoding
    • Added move generator and moves for shift, merge, split, and extract moves
    • Added unit test (Apply/Undo)
  • Updated MemPR (linear linkage)
    • Added basic tabu walk
  • Fixed bug in MemPR (permutation)
  • Updated Tests project
File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Collections;
24
25namespace HeuristicLab.Encodings.LinearLinkageEncoding {
26  public class MergeMove : Move {
27
28    public int LastItemOfOtherGroup { get; private set; }
29    private int nextItemOfOtherGroup; // undo information
30
31    public MergeMove(int item, int lastOfOther) {
32      Item = item;
33      LastItemOfOtherGroup = lastOfOther;
34      nextItemOfOtherGroup = -1;
35    }
36
37    public override void Apply(LinearLinkage lle) {
38      if (lle[LastItemOfOtherGroup] != LastItemOfOtherGroup) throw new ArgumentException("Move conditions have changed, group does not terminate at " + LastItemOfOtherGroup);
39      nextItemOfOtherGroup = lle[LastItemOfOtherGroup];
40      lle[LastItemOfOtherGroup] = Item;
41    }
42
43    public override void Undo(LinearLinkage lle) {
44      if (lle[LastItemOfOtherGroup] != Item) throw new ArgumentException("Move conditions have changed, groups are no longer linked between " + LastItemOfOtherGroup + " and " + Item);
45      if (nextItemOfOtherGroup < 0) throw new InvalidOperationException("Cannot undo move that has not been applied first.");
46      lle[LastItemOfOtherGroup] = nextItemOfOtherGroup;
47    }
48
49    public override void UpdateLinks(BidirectionalDictionary<int, int> links) {
50      if (nextItemOfOtherGroup < 0) throw new InvalidOperationException("Cannot update links for move that has not been applied first.");
51      links.RemoveBySecond(nextItemOfOtherGroup);
52    }
53  }
54}
Note: See TracBrowser for help on using the repository browser.