[16899] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2019 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 |
|
---|
| 22 | using HEAL.Attic;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[17002] | 26 | using HeuristicLab.Random;
|
---|
[16899] | 27 | using System.Collections.Generic;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Algorithms.EvolvmentModelsOfModels {
|
---|
| 30 | [Item("NetworkMap", "A map of models of models of models")]
|
---|
| 31 | [StorableType("C200ECC2-6D33-4468-A538-580B07D75B3C")]
|
---|
| 32 | public class EMMNetworkMap : EMMMapBase<ISymbolicExpressionTree> {
|
---|
| 33 | public int NeghboorNumber { get; set; }
|
---|
| 34 | #region conctructors
|
---|
| 35 | [StorableConstructor]
|
---|
| 36 | protected EMMNetworkMap(StorableConstructorFlag _) : base(_) { }
|
---|
| 37 | public EMMNetworkMap() : this(1) { }
|
---|
| 38 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 39 | return new EMMNetworkMap(this, cloner);
|
---|
| 40 | }
|
---|
| 41 | public EMMNetworkMap(int neghboorNumber = 10) : base() {
|
---|
| 42 | NeghboorNumber = neghboorNumber;
|
---|
| 43 | }
|
---|
| 44 | public EMMNetworkMap(EMMNetworkMap original, Cloner cloner) : base(original, cloner) { NeghboorNumber = original.NeghboorNumber; }
|
---|
| 45 | #endregion
|
---|
| 46 | #region MapTransformation
|
---|
| 47 | override public void CreateMap(IRandom random, int k) {
|
---|
[17002] | 48 | ApplyNetworkMapCreationAlgorithm(random, CalculateDistances(), Map, NeghboorNumber);
|
---|
[16899] | 49 | }
|
---|
[17002] | 50 | public static void ApplyNetworkMapCreationAlgorithm(IRandom random, double[,] distances, List<List<int>> map, int neghboorNumber = 10) {
|
---|
[16899] | 51 | int mapSize = distances.GetLength(0);
|
---|
| 52 | List<double> currentList = new List<double>();
|
---|
| 53 | for (int i = 0; i < mapSize; i++) {
|
---|
| 54 | map.Add(new List<int>());
|
---|
| 55 | for (int j = 0; j < mapSize; j++) {
|
---|
| 56 | currentList.Add(distances[i, j]);
|
---|
| 57 | }
|
---|
| 58 | map[i].Add(HelpFunctions.ChooseMinElementIndex(currentList));
|
---|
| 59 | while (map[i].Count < neghboorNumber) {
|
---|
| 60 | map[i].Add(HelpFunctions.ChooseMinElementIndex(currentList, i, map[i]));
|
---|
| 61 | }
|
---|
| 62 | currentList.Clear();
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
| 65 | #endregion
|
---|
| 66 | #region Dialog with surroudings
|
---|
[17002] | 67 | public override ISymbolicExpressionTree NewModelForMutation(IRandom random, out int treeNumber, int parentTreeNumber) {
|
---|
| 68 | treeNumber = Map[parentTreeNumber].SampleRandom(random);
|
---|
| 69 | return (ISymbolicExpressionTree)ModelSet[treeNumber].Clone();
|
---|
| 70 | }
|
---|
| 71 | override public ISymbolicExpressionTree NewModelForInizializtionNotTree(IRandom random, out int treeNumber) {
|
---|
| 72 | var newTree = NewModelForInizializtion(random, out treeNumber);
|
---|
[16899] | 73 | return newTree;
|
---|
| 74 | }
|
---|
| 75 | #endregion
|
---|
| 76 | }
|
---|
| 77 | }
|
---|