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

    r15017 r15032  
    3030
    3131  [StorableClass]
    32   [PushExpression(StackTypes.IntegerVector, "INTEGER[].BUTLAST")]
     32  [PushExpression(
     33    StackTypes.IntegerVector,
     34    "INTEGER[].BUTLAST",
     35    "Takes the rest of the top item on the INTEGER[] stack.")]
    3336  public class IntegerVectorButLastExpression : VectorButLastExpression<long> {
    3437    public IntegerVectorButLastExpression() { }
     
    4649
    4750  [StorableClass]
    48   [PushExpression(StackTypes.FloatVector, "FLOAT[].BUTLAST")]
     51  [PushExpression(
     52    StackTypes.FloatVector,
     53    "FLOAT[].BUTLAST",
     54    "Takes the rest of the top item on the FLOAT[] stack.")]
    4955  public class FloatVectorButLastExpression : VectorButLastExpression<double> {
    5056    public FloatVectorButLastExpression() { }
     
    6268
    6369  [StorableClass]
    64   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].BUTLAST")]
     70  [PushExpression(
     71    StackTypes.BooleanVector,
     72    "BOOLEAN[].BUTLAST",
     73    "Takes the rest of the top item on the BOOLEAN[] stack.")]
    6574  public class BooleanVectorButLastExpression : VectorButLastExpression<bool> {
    6675    public BooleanVectorButLastExpression() { }
     
    7887
    7988  [StorableClass]
    80   [PushExpression(StackTypes.StringVector, "STRING[].BUTLAST")]
     89  [PushExpression(
     90    StackTypes.StringVector,
     91    "STRING[].BUTLAST",
     92    "Takes the rest of the top item on the STRING[] stack.")]
    8193  public class StringVectorButLastExpression : VectorButLastExpression<string> {
    8294    public StringVectorButLastExpression() { }
Note: See TracChangeset for help on using the changeset viewer.