Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Individuals/MultiEncodingIndividual.cs @ 11737

Last change on this file since 11737 was 11737, checked in by mkommend, 9 years ago

#2174: Minor code cleanup in encodings.

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Core;
26
27namespace HeuristicLab.Problems.Programmable {
28  public sealed class MultiEncodingIndividual : Individual {
29    private new MultiEncoding Encoding {
30      get { return (MultiEncoding)base.Encoding; }
31    }
32
33    private readonly IEnumerable<Individual> individuals;
34
35    public MultiEncodingIndividual(MultiEncoding encoding, IScope scope)
36      : base(encoding, scope) {
37      individuals = encoding.Encodings.Select(e => e.GetIndividual(scope)).ToArray();
38    }
39
40    private MultiEncodingIndividual(MultiEncoding encoding, IScope scope, IEnumerable<Individual> individuals)
41      : base(encoding, scope) {
42      this.individuals = individuals;
43    }
44
45
46    public override IItem this[string name] {
47      get {
48        var individual = individuals.FirstOrDefault(i => i.Name == name);
49        if (individual == null) throw new ArgumentException(string.Format("{0} is not part of the specified encoding.", name));
50        return individual[name];
51      }
52      set {
53        var individual = individuals.FirstOrDefault(i => i.Name == name);
54        if (individual == null) throw new ArgumentException(string.Format("{0} is not part of the specified encoding.", name));
55        individual[name] = value;
56      }
57    }
58
59    internal override Individual Copy(IScope scope) {
60      var copies = individuals.Select(i => i.Copy(scope)).ToArray();
61      return new MultiEncodingIndividual(Encoding, scope, copies);
62    }
63  }
64}
Note: See TracBrowser for help on using the repository browser.