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

    r15017 r15032  
    4747
    4848  [StorableClass]
    49   [PushExpression(StackTypes.IntegerVector, "INTEGER[].REST")]
     49  [PushExpression(
     50    StackTypes.IntegerVector,
     51    "INTEGER[].REST",
     52    "Removes the first item of the top INTEGER[].")]
    5053  public class IntegerVectorRestExpression : VectorRestExpression<long> {
    5154    public IntegerVectorRestExpression() { }
     
    6366
    6467  [StorableClass]
    65   [PushExpression(StackTypes.FloatVector, "FLOAT[].REST")]
     68  [PushExpression(
     69    StackTypes.FloatVector,
     70    "FLOAT[].REST",
     71    "Removes the first item of the top FLOAT[].")]
    6672  public class FloatVectorRestExpression : VectorRestExpression<double> {
    6773    public FloatVectorRestExpression() { }
     
    7985
    8086  [StorableClass]
    81   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].REST")]
     87  [PushExpression(
     88    StackTypes.BooleanVector,
     89    "BOOLEAN[].REST",
     90    "Removes the first item of the top BOOLEAN[].")]
    8291  public class BooleanVectorRestExpression : VectorRestExpression<bool> {
    8392    public BooleanVectorRestExpression() { }
     
    95104
    96105  [StorableClass]
    97   [PushExpression(StackTypes.StringVector, "STRING[].REST")]
     106  [PushExpression(
     107    StackTypes.StringVector,
     108    "STRING[].REST",
     109    "Removes the first item of the top STRING[].")]
    98110  public class StringVectorRestExpression : VectorRestExpression<string> {
    99111    public StringVectorRestExpression() { }
Note: See TracChangeset for help on using the changeset viewer.