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

    r15017 r15032  
    1616  [Serializable]
    1717  [StorableClass]
    18   [PushExpression(StackTypes.Code, "CODE.DO*COUNT", StackTypes.Integer)]
     18  [PushExpression(
     19    StackTypes.Code,
     20    "CODE.DO*COUNT",
     21    "An iteration instruction that performs a loop (the body of which is taken from the CODE stack) the number of times indicated by the INTEGER argument, pushing an index (which runs from zero to one less than the number of iterations) onto the INTEGER stack prior to each execution of the loop body.",
     22    StackTypes.Integer)]
    1923  public class CodeDoCountExpression : StatelessExpression {
    2024
     
    4852  [Serializable]
    4953  [StorableClass]
    50   [PushExpression(StackTypes.Exec, "EXEC.DO*COUNT", StackTypes.Integer, execIn: 1)]
     54  [PushExpression(
     55    StackTypes.Exec,
     56    "EXEC.DO*COUNT",
     57    "An iteration instruction that performs a loop (the body of which is taken from the EXEC stack) the number of times indicated by the INTEGER argument, pushing an index (which runs from zero to one less than the number of iterations) onto the INTEGER stack prior to each execution of the loop body.",
     58    StackTypes.Integer,
     59    execIn: 1)]
    5160  public class ExecDoCountExpression : StatelessExpression {
    5261    public ExecDoCountExpression() { }
Note: See TracChangeset for help on using the changeset viewer.