- Timestamp:
- 08/27/15 10:20:09 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4
- Files:
-
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/BreathFirstMapper.cs
r12012 r12915 59 59 /// <param name="genotype">integer vector, which should be mapped to a tree</param> 60 60 /// <returns>phenotype (a symbolic expression tree)</returns> 61 public override SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,61 public override ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, 62 62 ISymbolicExpressionGrammar grammar, 63 63 IntegerVector genotype) { -
trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/DepthFirstMapper.cs
r12012 r12915 60 60 /// <param name="genotype">integer vector, which should be mapped to a tree</param> 61 61 /// <returns>phenotype (a symbolic expression tree)</returns> 62 public override SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,62 public override ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, 63 63 ISymbolicExpressionGrammar grammar, 64 64 IntegerVector genotype) { -
trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/GenotypeToPhenotypeMapper.cs
r12422 r12915 44 44 protected GenotypeToPhenotypeMapper() : base() { } 45 45 46 public abstract SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,46 public abstract ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, 47 47 ISymbolicExpressionGrammar grammar, 48 48 IntegerVector genotype); -
trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/IGenotypeToPhenotypeMapper.cs
r12012 r12915 32 32 /// </summary> 33 33 public interface IGenotypeToPhenotypeMapper : IIntegerVectorOperator { 34 SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,34 ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, 35 35 ISymbolicExpressionGrammar grammar, 36 36 IntegerVector genotype); -
trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/PIGEMapper.cs
r12012 r12915 105 105 /// <param name="genotype">integer vector, which should be mapped to a tree</param> 106 106 /// <returns>phenotype (a symbolic expression tree)</returns> 107 public override SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,107 public override ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, 108 108 ISymbolicExpressionGrammar grammar, 109 109 IntegerVector genotype) { -
trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/RandomMapper.cs
r12422 r12915 59 59 /// <param name="genotype">integer vector, which should be mapped to a tree</param> 60 60 /// <returns>phenotype (a symbolic expression tree)</returns> 61 public override SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,61 public override ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, 62 62 ISymbolicExpressionGrammar grammar, 63 63 IntegerVector genotype) {
Note: See TracChangeset
for help on using the changeset viewer.