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/Attributes/PushExpressionAttriubte.cs

    r15273 r15334  
    2020    /// Determines the amount of items fetched form the EXEC stack required for this expression. Used for mapping individuals.
    2121    /// </summary>
    22     public readonly uint ExecIn;
     22    public readonly uint RequiredBlockCount;
    2323
    2424    /// <summary>
     
    3232      string description,
    3333      StackTypes additionalStackDependencies = default(StackTypes),
    34       uint execIn = 0,
     34      uint requiredBlockCount = 0,
    3535      bool isHidden = false,
    3636      int inExpressionNr = -1) {
     
    4040      Name = name;
    4141      Description = description;
    42       ExecIn = execIn;
     42      RequiredBlockCount = requiredBlockCount;
    4343      IsHidden = isHidden;
    4444      InExpressionNr = inExpressionNr > 0 ? inExpressionNr : default(int?);
Note: See TracChangeset for help on using the changeset viewer.