Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/BreathFirstMapper.cs
r12915 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 36 36 /// </summary> 37 37 [Item("BreathFirstMapper", "Resolves the non-terminal symbols of the resulting phenotypic syntax tree in a breath-first manner.")] 38 [StorableClass ]38 [StorableClass("05FA9F8E-5BA7-463C-886B-3BE28EA9EB43")] 39 39 public class BreathFirstMapper : GenotypeToPhenotypeMapper { 40 40 -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/DepthFirstMapper.cs
r12915 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 37 37 /// </summary> 38 38 [Item("DepthFirstMapper", "Resolves the non-terminal symbols of the resulting phenotypic syntax tree in a depth-first manner.")] 39 [StorableClass ]39 [StorableClass("5AF70375-AFBE-424E-B0CD-739DC47C47A2")] 40 40 public class DepthFirstMapper : GenotypeToPhenotypeMapper { 41 41 -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/PIGEMapper.cs
r12915 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 38 38 /// Rule = Codon Value % Number Of Rules 39 39 /// 40 /// 𝜋GE:41 /// 𝜋GE codons consist of (nont, rule) tuples, where nont may be one value from an "order"40 /// ðGE: 41 /// ðGE codons consist of (nont, rule) tuples, where nont may be one value from an "order" 42 42 /// integer vector and rule may be one value from a "content" integer vector. 43 43 /// … … 50 50 /// * Content-only: only "content" vector is modified, "order" vector is fixed (0:1), 51 51 /// best result according to [2] 52 /// * 𝜋GE: genetic operators are applied equally (1:1),52 /// * ðGE: genetic operators are applied equally (1:1), 53 53 /// * Content:Order: genetic operators are applied unequally (e.g. 2:1 or 1:2), 54 54 /// … … 60 60 /// Described in 61 61 /// 62 /// [1] Michael O ’Neill et al. 𝜋Grammatical Evolution. In: GECCO 2004.63 /// Vol. 3103. LNCS. Heidelberg: Springer-Verlag Berlin, 2004, pp. 617 –629.62 /// [1] Michael OâNeill et al. ðGrammatical Evolution. In: GECCO 2004. 63 /// Vol. 3103. LNCS. Heidelberg: Springer-Verlag Berlin, 2004, pp. 617â629. 64 64 /// url: http://dynamics.org/Altenberg/UH_ICS/EC_REFS/GP_REFS/GECCO/2004/31030617.pdf. 65 65 /// 66 /// [2] David Fagan et al. Investigating Mapping Order in πGE. IEEE, 201066 /// [2] David Fagan et al. Investigating Mapping Order in ÏGE. IEEE, 2010 67 67 /// url: http://ncra.ucd.ie/papers/pigeWCCI2010.pdf 68 68 /// </remarks> 69 69 [Item("PIGEMapper", "Position Independent (PI) Grammatical Evolution Mapper")] 70 [StorableClass ]70 [StorableClass("6214F158-C08D-4D45-904C-5609E7226CE3")] 71 71 public class PIGEMapper : GenotypeToPhenotypeMapper { 72 72 … … 130 130 131 131 /// <summary> 132 /// Genotype-to-Phenotype mapper (iterative 𝜋GE approach, using a list of not expanded nonTerminals).132 /// Genotype-to-Phenotype mapper (iterative ðGE approach, using a list of not expanded nonTerminals). 133 133 /// </summary> 134 134 /// <param name="startNode">first node of the tree with arity 1</param> -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/RandomMapper.cs
r12915 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 36 36 /// </summary> 37 37 [Item("RandomMapper", "Randomly determines the next non-terminal symbol to expand.")] 38 [StorableClass ]38 [StorableClass("1144F5C5-FD54-41B2-A87B-18F2D65A96ED")] 39 39 public class RandomMapper : GenotypeToPhenotypeMapper { 40 40
Note: See TracChangeset
for help on using the changeset viewer.