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/VectorRemoveExpressions.cs

    r15017 r15032  
    3030
    3131  [StorableClass]
    32   [PushExpression(StackTypes.IntegerVector, "INTEGER[].REMOVE", StackTypes.Integer)]
     32  [PushExpression(
     33    StackTypes.IntegerVector,
     34    "INTEGER[].REMOVE",
     35    "Removes all occurrences of the top INTEGER in the top INTEGER[].",
     36    StackTypes.Integer)]
    3337  public class IntegerVectorRemoveExpression : VectorRemoveExpression<long> {
    3438    public IntegerVectorRemoveExpression() { }
     
    4650
    4751  [StorableClass]
    48   [PushExpression(StackTypes.FloatVector, "FLOAT[].REMOVE", StackTypes.Float)]
     52  [PushExpression(
     53    StackTypes.FloatVector,
     54    "FLOAT[].REMOVE",
     55    "Removes all occurrences of the top FLOAT in the top FLOAT[].",
     56    StackTypes.Float)]
    4957  public class FloatVectorRemoveExpression : VectorRemoveExpression<double> {
    5058    public FloatVectorRemoveExpression() { }
     
    6270
    6371  [StorableClass]
    64   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].REMOVE", StackTypes.Boolean)]
     72  [PushExpression(
     73    StackTypes.BooleanVector,
     74    "BOOLEAN[].REMOVE",
     75    "Removes all occurrences of the top BOOLEAN in the top BOOLEAN[].",
     76    StackTypes.Boolean)]
    6577  public class BooleanVectorRemoveExpression : VectorRemoveExpression<bool> {
    6678    public BooleanVectorRemoveExpression() { }
     
    7890
    7991  [StorableClass]
    80   [PushExpression(StackTypes.StringVector, "STRING[].REMOVE", StackTypes.String)]
     92  [PushExpression(
     93    StackTypes.StringVector,
     94    "Removes all occurrences of the top STRING in the top STRING[].",
     95    "STRING[].REMOVE",
     96    StackTypes.String)]
    8197  public class StringVectorRemoveExpression : VectorRemoveExpression<string> {
    8298    public StringVectorRemoveExpression() { }
Note: See TracChangeset for help on using the changeset viewer.