[11598] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11598] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
[11813] | 25 | using HeuristicLab.Common;
|
---|
[11598] | 26 | using HeuristicLab.Core;
|
---|
| 27 |
|
---|
[11949] | 28 | namespace HeuristicLab.Optimization {
|
---|
[11598] | 29 | public sealed class MultiEncodingIndividual : Individual {
|
---|
[11737] | 30 | private new MultiEncoding Encoding {
|
---|
[11598] | 31 | get { return (MultiEncoding)base.Encoding; }
|
---|
| 32 | }
|
---|
| 33 |
|
---|
[11619] | 34 | private readonly IEnumerable<Individual> individuals;
|
---|
[11737] | 35 |
|
---|
[11619] | 36 | public MultiEncodingIndividual(MultiEncoding encoding, IScope scope)
|
---|
[11598] | 37 | : base(encoding, scope) {
|
---|
[11619] | 38 | individuals = encoding.Encodings.Select(e => e.GetIndividual(scope)).ToArray();
|
---|
[11598] | 39 | }
|
---|
| 40 |
|
---|
[11619] | 41 | private MultiEncodingIndividual(MultiEncoding encoding, IScope scope, IEnumerable<Individual> individuals)
|
---|
| 42 | : base(encoding, scope) {
|
---|
| 43 | this.individuals = individuals;
|
---|
| 44 | }
|
---|
[11598] | 45 |
|
---|
| 46 |
|
---|
| 47 | public override IItem this[string name] {
|
---|
| 48 | get {
|
---|
[11813] | 49 | var individual = individuals.SingleOrDefault(i => i.Name == name);
|
---|
[11619] | 50 | if (individual == null) throw new ArgumentException(string.Format("{0} is not part of the specified encoding.", name));
|
---|
| 51 | return individual[name];
|
---|
[11598] | 52 | }
|
---|
| 53 | set {
|
---|
[11813] | 54 | var individual = individuals.SingleOrDefault(i => i.Name == name);
|
---|
[11619] | 55 | if (individual == null) throw new ArgumentException(string.Format("{0} is not part of the specified encoding.", name));
|
---|
| 56 | individual[name] = value;
|
---|
[11598] | 57 | }
|
---|
| 58 | }
|
---|
| 59 |
|
---|
[11813] | 60 | public override TEncoding GetEncoding<TEncoding>() {
|
---|
| 61 | TEncoding encoding;
|
---|
| 62 | try {
|
---|
| 63 | encoding = (TEncoding)Encoding.Encodings.SingleOrDefault(e => e is TEncoding);
|
---|
[11885] | 64 | } catch (InvalidOperationException) {
|
---|
[11813] | 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 |
|
---|
[11885] | 71 | public override Individual CopyToScope(IScope scope) {
|
---|
| 72 | var copies = individuals.Select(i => i.CopyToScope(scope)).ToArray();
|
---|
[11619] | 73 | return new MultiEncodingIndividual(Encoding, scope, copies);
|
---|
[11598] | 74 | }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|