[11598] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16075] | 3 | * Copyright (C) 2002-2018 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 | public MultiEncodingIndividual(MultiEncoding encoding, IScope scope)
|
---|
[15256] | 35 | : base(encoding, scope) { }
|
---|
[11598] | 36 |
|
---|
[15256] | 37 | private MultiEncodingIndividual(MultiEncodingIndividual copy) : base(copy.Encoding, new Scope()) {
|
---|
| 38 | copy.CopyToScope(Scope);
|
---|
[11619] | 39 | }
|
---|
[15256] | 40 | public override Individual Copy() {
|
---|
| 41 | return new MultiEncodingIndividual(this);
|
---|
[11598] | 42 | }
|
---|
| 43 |
|
---|
[11813] | 44 | public override TEncoding GetEncoding<TEncoding>() {
|
---|
| 45 | TEncoding encoding;
|
---|
| 46 | try {
|
---|
| 47 | encoding = (TEncoding)Encoding.Encodings.SingleOrDefault(e => e is TEncoding);
|
---|
[15256] | 48 | }
|
---|
| 49 | catch (InvalidOperationException) {
|
---|
[11813] | 50 | throw new InvalidOperationException(string.Format("The individual uses multiple {0} .", typeof(TEncoding).GetPrettyName()));
|
---|
| 51 | }
|
---|
| 52 | if (encoding == null) throw new InvalidOperationException(string.Format("The individual does not use a {0}.", typeof(TEncoding).GetPrettyName()));
|
---|
| 53 | return encoding;
|
---|
| 54 | }
|
---|
[11598] | 55 | }
|
---|
| 56 | }
|
---|