Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/21/17 11:33:53 (7 years ago)
Author:
pkimmesw
Message:

#2665 Testet Problems, Testet error functions, Small fixes, Created HL files

Location:
branches/PushGP/HeuristicLab.PushGP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP

    • Property svn:ignore
      •  

        old new  
        11*.user
         2packages
         3TestResults
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorIterateExpressions.cs

    r15189 r15334  
    6767    "Iterates in reverse order (due to performance reasons) over the top INTEGER[] using the top item of the EXEC stack.",
    6868    StackTypes.Integer | StackTypes.Exec,
    69     execIn: 1)]
     69    requiredBlockCount: 1)]
    7070  public class IntegerVectorIterateExpression : VectorIterateExpression<long> {
    7171    public IntegerVectorIterateExpression() { }
     
    8787    "FLOAT[].ITERATE",
    8888    "Iterates in reverse order (due to performance reasons) over the top FLOAT[] using the top item of the EXEC stack.",
    89     StackTypes.Float | StackTypes.Exec, execIn: 1)]
     89    StackTypes.Float | StackTypes.Exec, requiredBlockCount: 1)]
    9090  public class FloatVectorIterateExpression : VectorIterateExpression<double> {
    9191    public FloatVectorIterateExpression() { }
     
    107107    "BOOLEAN[].ITERATE",
    108108    "Iterates in reverse order (due to performance reasons) over the top BOOLEAN[] using the top item of the EXEC stack.",
    109     StackTypes.Boolean | StackTypes.Exec, execIn: 1)]
     109    StackTypes.Boolean | StackTypes.Exec, requiredBlockCount: 1)]
    110110  public class BooleanVectorIterateExpression : VectorIterateExpression<bool> {
    111111    public BooleanVectorIterateExpression() { }
     
    127127    "STRING[].ITERATE",
    128128    "Iterates in reverse order (due to performance reasons) over the top STRING[] using the top item of the EXEC stack.",
    129     StackTypes.String | StackTypes.Exec, execIn: 1)]
     129    StackTypes.String | StackTypes.Exec, requiredBlockCount: 1)]
    130130  public class StringVectorIterateExpression : VectorIterateExpression<string> {
    131131    public StringVectorIterateExpression() { }
Note: See TracChangeset for help on using the changeset viewer.