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

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