[3187] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
[4722] | 22 | using HeuristicLab.Common;
|
---|
[3187] | 23 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
| 24 |
|
---|
| 25 | namespace HeuristicLab.Problems.TestFunctions {
|
---|
| 26 | /// <summary>
|
---|
| 27 | /// This wrapper disguises as real vector for use in the evaluation functions.
|
---|
| 28 | /// </summary>
|
---|
[4722] | 29 | internal sealed class RealVectorAdditiveMoveWrapper : RealVector {
|
---|
[3187] | 30 | private int dimension;
|
---|
| 31 | private double moveDistance;
|
---|
| 32 | private RealVector vector;
|
---|
| 33 |
|
---|
[4722] | 34 | private RealVectorAdditiveMoveWrapper(bool deserializing) : base(deserializing) { }
|
---|
| 35 | private RealVectorAdditiveMoveWrapper(RealVectorAdditiveMoveWrapper original, Cloner cloner)
|
---|
| 36 | : base(original, cloner) {
|
---|
| 37 | this.dimension = original.dimension;
|
---|
| 38 | this.moveDistance = original.moveDistance;
|
---|
| 39 | this.vector = cloner.Clone(vector);
|
---|
| 40 | }
|
---|
[3187] | 41 | public RealVectorAdditiveMoveWrapper(AdditiveMove move, RealVector vector) {
|
---|
| 42 | dimension = move.Dimension;
|
---|
| 43 | moveDistance = move.MoveDistance;
|
---|
| 44 | this.vector = vector;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[4722] | 47 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 48 | return new RealVectorAdditiveMoveWrapper(this, cloner);
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[3187] | 51 | public override double this[int index] {
|
---|
| 52 | get {
|
---|
| 53 | if (index != dimension)
|
---|
| 54 | return vector[index];
|
---|
| 55 | else return vector[index] + moveDistance;
|
---|
| 56 | }
|
---|
| 57 | set {
|
---|
| 58 | throw new System.NotSupportedException("Error: Writing to the wrapper is not allowed.");
|
---|
| 59 | }
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | public override int Length {
|
---|
| 63 | get {
|
---|
| 64 | return vector.Length;
|
---|
| 65 | }
|
---|
| 66 | protected set {
|
---|
| 67 | throw new System.NotSupportedException("Error: Setting the lenght of the wrapper is not allowed.");
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 | }
|
---|