Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Optimization/3.3/BasicProblems/Individuals/MultiEncodingIndividual.cs @ 14600

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

#2457: updated branch to trunk

File size: 2.9 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 System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27
28namespace HeuristicLab.Optimization {
29  public sealed class MultiEncodingIndividual : Individual {
30    private new MultiEncoding Encoding {
31      get { return (MultiEncoding)base.Encoding; }
32    }
33
34    private readonly IEnumerable<Individual> individuals;
35
36    public MultiEncodingIndividual(MultiEncoding encoding, IScope scope)
37      : base(encoding, scope) {
38      individuals = encoding.Encodings.Select(e => e.GetIndividual(scope)).ToArray();
39    }
40
41    private MultiEncodingIndividual(MultiEncoding encoding, IScope scope, IEnumerable<Individual> individuals)
42      : base(encoding, scope) {
43      this.individuals = individuals;
44    }
45
46
47    public override IItem this[string name] {
48      get {
49        var individual = individuals.SingleOrDefault(i => i.Name == name);
50        if (individual == null) throw new ArgumentException(string.Format("{0} is not part of the specified encoding.", name));
51        return individual[name];
52      }
53      set {
54        var individual = individuals.SingleOrDefault(i => i.Name == name);
55        if (individual == null) throw new ArgumentException(string.Format("{0} is not part of the specified encoding.", name));
56        individual[name] = value;
57      }
58    }
59
60    public override TEncoding GetEncoding<TEncoding>() {
61      TEncoding encoding;
62      try {
63        encoding = (TEncoding)Encoding.Encodings.SingleOrDefault(e => e is TEncoding);
64      } catch (InvalidOperationException) {
65        throw new InvalidOperationException(string.Format("The individual uses multiple {0} .", typeof(TEncoding).GetPrettyName()));
66      }
67      if (encoding == null) throw new InvalidOperationException(string.Format("The individual does not use a {0}.", typeof(TEncoding).GetPrettyName()));
68      return encoding;
69    }
70
71    public override Individual CopyToScope(IScope scope) {
72      var copies = individuals.Select(i => i.CopyToScope(scope)).ToArray();
73      return new MultiEncodingIndividual(Encoding, scope, copies);
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.