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

    r15017 r15032  
    88
    99  /// <summary>
    10   /// Concats two vectors on the type stack.
     10  /// Concatinates two vectors on the type stack.
    1111  /// </summary>
    1212  [StorableClass]
     
    3333
    3434  [StorableClass]
    35   [PushExpression(StackTypes.IntegerVector, "INTEGER[].CONCAT")]
     35  [PushExpression(
     36    StackTypes.IntegerVector,
     37    "INTEGER[].CONCAT",
     38    "Concatenates the top two vectors on the INTEGER[] stack.")]
    3639  public class IntegerVectorConcatExpression : VectorConcatExpression<long> {
    3740    public IntegerVectorConcatExpression() { }
     
    4952
    5053  [StorableClass]
    51   [PushExpression(StackTypes.FloatVector, "FLOAT[].CONCAT")]
     54  [PushExpression(
     55    StackTypes.FloatVector,
     56    "FLOAT[].CONCAT",
     57    "Concatenates the top two vectors on the FLOAT[] stack.")]
    5258  public class FloatVectorConcatExpression : VectorConcatExpression<double> {
    5359    public FloatVectorConcatExpression() { }
     
    6571
    6672  [StorableClass]
    67   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].CONCAT")]
     73  [PushExpression(
     74    StackTypes.BooleanVector,
     75    "BOOLEAN[].CONCAT",
     76    "Concatenates the top two vectors on the BOOLEAN[] stack.")]
    6877  public class BooleanVectorConcatExpression : VectorConcatExpression<bool> {
    6978    public BooleanVectorConcatExpression() { }
     
    8190
    8291  [StorableClass]
    83   [PushExpression(StackTypes.StringVector, "STRING[].CONCAT")]
     92  [PushExpression(
     93    StackTypes.StringVector,
     94    "STRING[].CONCAT",
     95    "Concatenates the top two vectors on the STRING[] stack.")]
    8496  public class StringVectorConcatExpression : VectorConcatExpression<string> {
    8597    public StringVectorConcatExpression() { }
Note: See TracChangeset for help on using the changeset viewer.