Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/17 14:11:43 (7 years ago)
Author:
pkimmesw
Message:

#2665 Fixed bias 0 issue, PushExpressionFrequencyAnalyzer, Fixed probability for ERC settings, Fixed enable/disable instructions, Added expression descriptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorReplaceExpressions.cs

    r15017 r15032  
    3838
    3939  [StorableClass]
    40   [PushExpression(StackTypes.IntegerVector, "INTEGER[].REPLACE", StackTypes.Integer)]
     40  [PushExpression(
     41    StackTypes.IntegerVector,
     42    "INTEGER[].REPLACE",
     43    "Replaces all occurrences of the second INTEGER with the INTEGER in the top INTEGER[].",
     44    StackTypes.Integer)]
    4145  public class IntegerVectorReplaceExpression : VectorReplaceExpression<long> {
    4246    public IntegerVectorReplaceExpression() { }
     
    5458
    5559  [StorableClass]
    56   [PushExpression(StackTypes.FloatVector, "FLOAT[].REPLACE", StackTypes.Float)]
     60  [PushExpression(
     61    StackTypes.FloatVector,
     62    "FLOAT[].REPLACE",
     63    "Replaces all occurrences of the second FLOAT with the FLOAT in the top FLOAT[].",
     64    StackTypes.Float)]
    5765  public class FloatVectorReplaceExpression : VectorReplaceExpression<double> {
    5866    public FloatVectorReplaceExpression() { }
     
    7078
    7179  [StorableClass]
    72   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].REPLACE", StackTypes.Boolean)]
     80  [PushExpression(
     81    StackTypes.BooleanVector,
     82    "BOOLEAN[].REPLACE",
     83    "Replaces all occurrences of the second BOOLEAN with the BOOLEAN in the top BOOLEAN[].",
     84    StackTypes.Boolean)]
    7385  public class BooleanVectorReplaceExpression : VectorReplaceExpression<bool> {
    7486    public BooleanVectorReplaceExpression() { }
     
    8698
    8799  [StorableClass]
    88   [PushExpression(StackTypes.StringVector, "STRING[].REPLACE", StackTypes.String)]
     100  [PushExpression(
     101    StackTypes.StringVector,
     102    "STRING[].REPLACE",
     103    "Replaces all occurrences of the second STRING with the STRING in the top STRING[].",
     104    StackTypes.String)]
    89105  public class StringVectorReplaceExpression : VectorReplaceExpression<string> {
    90106    public StringVectorReplaceExpression() { }
Note: See TracChangeset for help on using the changeset viewer.