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

    r15017 r15032  
    4343
    4444  [StorableClass]
    45   [PushExpression(StackTypes.IntegerVector, "INTEGER[].INDEXOF", StackTypes.Integer)]
     45  [PushExpression(
     46    StackTypes.IntegerVector,
     47    "INTEGER[].INDEXOF",
     48    "Pushes the index of the top INTEGER in the top INTEGER[] onto the INTEGER stack.",
     49    StackTypes.Integer)]
    4650  public class IntegerVectorIndexOfExpression : VectorIndexOfExpression<long> {
    4751    public IntegerVectorIndexOfExpression() { }
     
    5963
    6064  [StorableClass]
    61   [PushExpression(StackTypes.FloatVector, "FLOAT[].INDEXOF", StackTypes.Float | StackTypes.Integer)]
     65  [PushExpression(
     66    StackTypes.FloatVector,
     67    "FLOAT[].INDEXOF",
     68    "Pushes the index of the top FLOAT in the top FLOAT[] onto the INTEGER stack.",
     69    StackTypes.Float | StackTypes.Integer)]
    6270  public class FloatVectorIndexOfExpression : VectorIndexOfExpression<double> {
    6371    public FloatVectorIndexOfExpression() { }
     
    7583
    7684  [StorableClass]
    77   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].INDEXOF", StackTypes.Boolean | StackTypes.Integer)]
     85  [PushExpression(
     86    StackTypes.BooleanVector,
     87    "BOOLEAN[].INDEXOF",
     88    "Pushes the index of the top BOOLEAN in the top BOOLEAN[] onto the INTEGER stack.",
     89    StackTypes.Boolean | StackTypes.Integer)]
    7890  public class BooleanVectorIndexOfExpression : VectorIndexOfExpression<bool> {
    7991    public BooleanVectorIndexOfExpression() { }
     
    91103
    92104  [StorableClass]
    93   [PushExpression(StackTypes.StringVector, "STRING[].INDEXOF", StackTypes.String | StackTypes.String)]
     105  [PushExpression(
     106    StackTypes.StringVector,
     107    "STRING[].INDEXOF",
     108    "Pushes the index of the top STRING in the top STRING[] onto the INTEGER stack.",
     109    StackTypes.String | StackTypes.Integer)]
    94110  public class StringVectorIndexOfExpression : VectorIndexOfExpression<string> {
    95111    public StringVectorIndexOfExpression() { }
Note: See TracChangeset for help on using the changeset viewer.