[17002] | 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;
|
---|
| 26 | using System.Collections.Generic;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Algorithms.EvolvmentModelsOfModels {
|
---|
| 29 | [Item("ZeroMap", "A map of models of models of models")]
|
---|
| 30 | [StorableType("FF199AE7-DF0A-4E2A-99BC-BECD647E18F0")]
|
---|
| 31 | public class EMMZeroMap : EMMMapBase<ISymbolicExpressionTree> {
|
---|
[17134] | 32 | #region constructors
|
---|
[17002] | 33 | [StorableConstructor]
|
---|
| 34 | protected EMMZeroMap(StorableConstructorFlag _) : base(_) { }
|
---|
| 35 | public EMMZeroMap() {
|
---|
| 36 | ModelSet = new List<ISymbolicExpressionTree>();
|
---|
| 37 | }
|
---|
| 38 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 39 | return new EMMZeroMap(this, cloner);
|
---|
| 40 | }
|
---|
| 41 | public EMMZeroMap(EMMZeroMap original, Cloner cloner) : base(original, cloner) { }
|
---|
| 42 | #endregion
|
---|
[17134] | 43 | #region Map Apply Functions
|
---|
| 44 | override public void CreateMap(IRandom random) { }
|
---|
[17002] | 45 | override public ISymbolicExpressionTree NewModelForInizializtionNotTree(IRandom random, out int treeNumber) {
|
---|
| 46 | return NewModelForInizializtion(random, out treeNumber);
|
---|
| 47 | }
|
---|
| 48 | public override ISymbolicExpressionTree NewModelForMutation(IRandom random, out int treeNumber, int parentTreeNumber) {
|
---|
| 49 | treeNumber = random.Next(ModelSet.Count);
|
---|
| 50 | return (ISymbolicExpressionTree)ModelSet[treeNumber].Clone();
|
---|
| 51 | }
|
---|
| 52 | #endregion
|
---|
| 53 |
|
---|
| 54 | }
|
---|
| 55 | }
|
---|