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

    r15017 r15032  
    2828
    2929  [StorableClass]
    30   [PushExpression(StackTypes.IntegerVector, "INTEGER[].FIRST", StackTypes.Integer)]
     30  [PushExpression(
     31    StackTypes.IntegerVector,
     32    "INTEGER[].FIRST",
     33    "Pushes the first INTEGER of the top INTEGER[].",
     34    StackTypes.Integer)]
    3135  public class IntegerVectorFirstExpression : VectorFirstExpression<long> {
    3236    public IntegerVectorFirstExpression() { }
     
    4448
    4549  [StorableClass]
    46   [PushExpression(StackTypes.FloatVector, "FLOAT[].FIRST", StackTypes.Float)]
     50  [PushExpression(
     51    StackTypes.FloatVector,
     52    "FLOAT[].FIRST",
     53    "Pushes the first FLOAT of the top FLOAT[].",
     54    StackTypes.Float)]
    4755  public class FloatVectorFirstExpression : VectorFirstExpression<double> {
    4856    public FloatVectorFirstExpression() { }
     
    6068
    6169  [StorableClass]
    62   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].FIRST", StackTypes.Boolean)]
     70  [PushExpression(
     71    StackTypes.BooleanVector,
     72    "BOOLEAN[].FIRST",
     73    "Pushes the first BOOLEAN of the top BOOLEAN[].",
     74    StackTypes.Boolean)]
    6375  public class BooleanVectorFirstExpression : VectorFirstExpression<bool> {
    6476    public BooleanVectorFirstExpression() { }
     
    7688
    7789  [StorableClass]
    78   [PushExpression(StackTypes.StringVector, "STRING[].FIRST", StackTypes.String)]
     90  [PushExpression(
     91    StackTypes.StringVector,
     92    "STRING[].FIRST",
     93    "Pushes the first BOOLEAN of the top BOOLEAN[].",
     94    StackTypes.String)]
    7995  public class StringVectorFirstExpression : VectorFirstExpression<string> {
    8096    public StringVectorFirstExpression() { }
Note: See TracChangeset for help on using the changeset viewer.