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

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