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

    r15017 r15032  
    4949  [StorableClass]
    5050  [Serializable]
    51   [PushExpression(StackTypes.Integer, "INTEGER.PUSH", isHidden: true)]
     51  [PushExpression(StackTypes.Integer, "INTEGER.PUSH", "Pushes a specific integer onto the INTEGER stack", isHidden: true)]
    5252  public class IntegerPushExpression : PushExpression<long> {
    5353    [StorableConstructor]
     
    7878  [StorableClass]
    7979  [Serializable]
    80   [PushExpression(StackTypes.Float, "FLOAT.PUSH", isHidden: true)]
     80  [PushExpression(StackTypes.Float, "FLOAT.PUSH", "Pushes a specific float onto the FLOAT stack", isHidden: true)]
    8181  public class FloatPushExpression : PushExpression<double> {
    8282    [StorableConstructor]
     
    107107  [StorableClass]
    108108  [Serializable]
    109   [PushExpression(StackTypes.Boolean, "BOOLEAN.PUSH", isHidden: true)]
     109  [PushExpression(StackTypes.Boolean, "BOOLEAN.PUSH", "Pushes a specific boolean onto the BOOLEAN stack", isHidden: true)]
    110110  public class BooleanPushExpression : PushExpression<bool> {
    111111    [StorableConstructor]
     
    136136  [StorableClass]
    137137  [Serializable]
    138   [PushExpression(StackTypes.Name, "NAME.PUSH", isHidden: true)]
     138  [PushExpression(StackTypes.Name, "NAME.PUSH", "Pushes a specific name onto the NAME stack", isHidden: true)]
    139139  public class NamePushExpression : PushExpression<string> {
    140140    [StorableConstructor]
     
    161161  [StorableClass]
    162162  [Serializable]
    163   [PushExpression(StackTypes.Exec, "EXEC.PUSH", isHidden: true)]
     163  [PushExpression(StackTypes.Exec, "EXEC.PUSH", "Pushes a specific expression onto the EXEC stack", isHidden: true)]
    164164  public class ExecPushExpression : PushExpression<Expression> {
    165165    [StorableConstructor]
     
    191191  [StorableClass]
    192192  [Serializable]
    193   [PushExpression(StackTypes.Char, "CHAR.PUSH", isHidden: true)]
     193  [PushExpression(StackTypes.Char, "CHAR.PUSH", "Pushes a specific char onto the CHAR stack", isHidden: true)]
    194194  public class CharPushExpression : PushExpression<char> {
    195195    [StorableConstructor]
     
    225225  [StorableClass]
    226226  [Serializable]
    227   [PushExpression(StackTypes.String, "STRING.PUSH", isHidden: true)]
     227  [PushExpression(StackTypes.String, "STRING.PUSH", "Pushes a specific string onto the STRING stack", isHidden: true)]
    228228  public class StringPushExpression : PushExpression<string> {
    229229    [StorableConstructor]
     
    258258  [StorableClass]
    259259  [Serializable]
    260   [PushExpression(StackTypes.IntegerVector, "INTEGER[].PUSH", isHidden: true)]
     260  [PushExpression(StackTypes.IntegerVector, "INTEGER[].PUSH", "Pushes a specific integer vector onto the INTEGER[] stack", isHidden: true)]
    261261  public class IntegerVectorPushExpression : VectorPushExpression<long> {
    262262    [StorableConstructor]
     
    289289  [StorableClass]
    290290  [Serializable]
    291   [PushExpression(StackTypes.FloatVector, "FLOAT[].PUSH", isHidden: true)]
     291  [PushExpression(StackTypes.FloatVector, "FLOAT[].PUSH", "Pushes a specific float vector onto the FLOAT[] stack", isHidden: true)]
    292292  public class FloatVectorPushExpression : VectorPushExpression<double> {
    293293    [StorableConstructor]
     
    319319  [StorableClass]
    320320  [Serializable]
    321   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].PUSH", isHidden: true)]
     321  [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].PUSH", "Pushes a specific boolean vector onto the BOOLEAN[] stack", isHidden: true)]
    322322  public class BooleanVectorPushExpression : VectorPushExpression<bool> {
    323323    [StorableConstructor]
     
    349349  [StorableClass]
    350350  [Serializable]
    351   [PushExpression(StackTypes.StringVector, "STRING[].PUSH", isHidden: true)]
     351  [PushExpression(StackTypes.StringVector, "STRING[].PUSH", "Pushes a specific string vector onto the STRING[] stack", isHidden: true)]
    352352  public class StringVectorPushExpression : VectorPushExpression<string> {
    353353    [StorableConstructor]
Note: See TracChangeset for help on using the changeset viewer.