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

    r15017 r15032  
    5656
    5757  [StorableClass]
    58   [PushExpression(StackTypes.IntegerVector, "INTEGER[].SET", StackTypes.Integer)]
     58  [PushExpression(
     59    StackTypes.IntegerVector,
     60    "INTEGER[].SET",
     61    "Replaces in the top INTEGER[] item at index (from INTEGER stack) with the first INTEGER item.",
     62    StackTypes.Integer)]
    5963  public class IntegerVectorSetExpression : VectorSetExpression<long> {
    6064    public IntegerVectorSetExpression() { }
     
    7276
    7377  [StorableClass]
    74   [PushExpression(StackTypes.FloatVector, "FLOAT[].SET", StackTypes.Float | StackTypes.Integer)]
     78  [PushExpression(
     79    StackTypes.FloatVector,
     80    "FLOAT[].SET",
     81    "Replaces in the top FLOAT[] item at index (from INTEGER stack) with the first FLOAT item.",
     82    StackTypes.Float | StackTypes.Integer)]
    7583  public class FloatVectorSetExpression : VectorSetExpression<double> {
    7684    public FloatVectorSetExpression() { }
     
    8896
    8997  [StorableClass]
    90   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].SET", StackTypes.Boolean | StackTypes.Integer)]
     98  [PushExpression(
     99    StackTypes.BooleanVector,
     100    "BOOLEAN[].SET",
     101    "Replaces in the top BOOLEAN[] item at index (from INTEGER stack) with the first BOOLEAN item.",
     102    StackTypes.Boolean | StackTypes.Integer)]
    91103  public class BooleanVectorSetExpression : VectorSetExpression<bool> {
    92104    public BooleanVectorSetExpression() { }
     
    104116
    105117  [StorableClass]
    106   [PushExpression(StackTypes.StringVector, "STRING[].SET", StackTypes.String | StackTypes.Integer)]
     118  [PushExpression(
     119    StackTypes.StringVector,
     120    "STRING[].SET",
     121    "Replaces in the top STRING[] item at index (from INTEGER stack) with the first STRING item.",
     122    StackTypes.String | StackTypes.Integer)]
    107123  public class StringVectorSetExpression : VectorSetExpression<string> {
    108124    public StringVectorSetExpression() { }
Note: See TracChangeset for help on using the changeset viewer.