- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.GrammaticalEvolution
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/BreathFirstMapper.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Encodings.IntegerVectorEncoding; 30 30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Problems.GrammaticalEvolution { … … 36 36 /// </summary> 37 37 [Item("BreathFirstMapper", "Resolves the non-terminal symbols of the resulting phenotypic syntax tree in a breath-first manner.")] 38 [Storable Class]38 [StorableType("7E8D7511-83C3-4F12-8883-BD20FCB58986")] 39 39 public class BreathFirstMapper : GenotypeToPhenotypeMapper { 40 40 41 41 [StorableConstructor] 42 protected BreathFirstMapper( bool deserializing) : base(deserializing) { }42 protected BreathFirstMapper(StorableConstructorFlag _) : base(_) { } 43 43 protected BreathFirstMapper(BreathFirstMapper original, Cloner cloner) : base(original, cloner) { } 44 44 public BreathFirstMapper() : base() { } -
stable/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/DepthFirstMapper.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 30 30 using HeuristicLab.Encodings.IntegerVectorEncoding; 31 31 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 34 34 namespace HeuristicLab.Problems.GrammaticalEvolution { … … 37 37 /// </summary> 38 38 [Item("DepthFirstMapper", "Resolves the non-terminal symbols of the resulting phenotypic syntax tree in a depth-first manner.")] 39 [Storable Class]39 [StorableType("9FACB397-FB99-4858-8962-DBB1FE16C54B")] 40 40 public class DepthFirstMapper : GenotypeToPhenotypeMapper { 41 41 42 42 [StorableConstructor] 43 protected DepthFirstMapper( bool deserializing) : base(deserializing) { }43 protected DepthFirstMapper(StorableConstructorFlag _) : base(_) { } 44 44 protected DepthFirstMapper(DepthFirstMapper original, Cloner cloner) : base(original, cloner) { } 45 45 public DepthFirstMapper() : base() { } -
stable/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/GenotypeToPhenotypeMapper.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Encodings.IntegerVectorEncoding; 30 30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.GrammaticalEvolution.Mappers; 33 33 using HeuristicLab.Random; … … 37 37 /// Abstract base class for GenotypeToPhenotypeMappers 38 38 /// </summary> 39 [Storable Class]39 [StorableType("427C4EB7-7888-4AB2-824A-E1F2EB1DE2FA")] 40 40 public abstract class GenotypeToPhenotypeMapper : IntegerVectorOperator, IGenotypeToPhenotypeMapper { 41 41 42 42 [StorableConstructor] 43 protected GenotypeToPhenotypeMapper( bool deserializing) : base(deserializing) { }43 protected GenotypeToPhenotypeMapper(StorableConstructorFlag _) : base(_) { } 44 44 protected GenotypeToPhenotypeMapper(GenotypeToPhenotypeMapper original, Cloner cloner) : base(original, cloner) { } 45 45 protected GenotypeToPhenotypeMapper() : base() { } -
stable/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/IGenotypeToPhenotypeMapper.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Encodings.IntegerVectorEncoding; 27 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.Problems.GrammaticalEvolution.Mappers { 31 [StorableType("17ca7334-176c-4d80-89f9-ae918dcc65d2")] 30 32 /// <summary> 31 33 /// IGenotypeToPhenotypeMapper -
stable/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/PIGEMapper.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Encodings.IntegerVectorEncoding; 29 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Problems.GrammaticalEvolution { … … 68 68 /// </remarks> 69 69 [Item("PIGEMapper", "Position Independent (PI) Grammatical Evolution Mapper")] 70 [Storable Class]70 [StorableType("AFD85902-C2EA-47F5-8284-BA1759848580")] 71 71 public class PIGEMapper : GenotypeToPhenotypeMapper { 72 72 … … 86 86 87 87 [StorableConstructor] 88 protected PIGEMapper( bool deserializing) : base(deserializing) { }88 protected PIGEMapper(StorableConstructorFlag _) : base(_) { } 89 89 protected PIGEMapper(PIGEMapper original, Cloner cloner) : base(original, cloner) { } 90 90 public PIGEMapper() : base() { } -
stable/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/RandomMapper.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Encodings.IntegerVectorEncoding; 29 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 using HeuristicLab.Random; 32 32 … … 36 36 /// </summary> 37 37 [Item("RandomMapper", "Randomly determines the next non-terminal symbol to expand.")] 38 [Storable Class]38 [StorableType("FD52470F-EA9A-4E95-8DE0-66C9B9F5F4EB")] 39 39 public class RandomMapper : GenotypeToPhenotypeMapper { 40 40 41 41 [StorableConstructor] 42 protected RandomMapper( bool deserializing) : base(deserializing) { }42 protected RandomMapper(StorableConstructorFlag _) : base(_) { } 43 43 protected RandomMapper(RandomMapper original, Cloner cloner) : base(original, cloner) { } 44 44 public RandomMapper() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.