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

    r15017 r15032  
    1313  ///     Pushes the logical AND of the top two BOOLEANs.
    1414  /// </summary>
    15   [PushExpression(StackTypes.Boolean, "BOOLEAN.AND")]
     15  [PushExpression(StackTypes.Boolean, "BOOLEAN.AND", "Pushes the logical AND of the top two BOOLEANs.")]
    1616  [StorableClass]
    1717  public class BooleanAndExpression : StatelessExpression {
     
    3636  ///     Pushes the logical OR of the top two BOOLEANs.
    3737  /// </summary>
    38   [PushExpression(StackTypes.Boolean, "BOOLEAN.OR")]
     38  [PushExpression(StackTypes.Boolean, "BOOLEAN.OR", "Pushes the logical OR of the top two BOOLEANs.")]
    3939  [StorableClass]
    4040  public class BooleanOrExpression : StatelessExpression {
     
    5959  ///     Pushes the logical NOT of the top BOOLEAN.
    6060  /// </summary>
    61   [PushExpression(StackTypes.Boolean, "BOOLEAN.NOT")]
     61  [PushExpression(StackTypes.Boolean, "BOOLEAN.NOT", "Pushes the logical NOT of the top BOOLEAN.")]
    6262  [StorableClass]
    6363  public class BooleanNotExpression : StatelessExpression {
     
    7878  ///     Pushes FALSE if the top FLOAT is 0.0, or TRUE otherwise.
    7979  /// </summary>
    80   [PushExpression(StackTypes.Boolean, "BOOLEAN.FROMFLOAT", StackTypes.Float)]
     80  [PushExpression(StackTypes.Boolean, "BOOLEAN.FROMFLOAT", "Pushes FALSE if the top FLOAT is 0.0, or TRUE otherwise.", StackTypes.Float)]
    8181  [StorableClass]
    8282  public class BooleanFromFloatExpression : StatelessExpression {
     
    9898  ///     Pushes FALSE if the top INTEGER is 0, or TRUE otherwise.
    9999  /// </summary>
    100   [PushExpression(StackTypes.Boolean, "BOOLEAN.FROMINTEGER", StackTypes.Integer)]
     100  [PushExpression(StackTypes.Boolean, "BOOLEAN.FROMINTEGER", "Pushes FALSE if the top INTEGER is 0, or TRUE otherwise.", StackTypes.Integer)]
    101101  [StorableClass]
    102102  public class BooleanFromIntegerExpression : StatelessExpression {
     
    118118  ///     Pushes the logical AND of the top two BOOLEANs, whereby the first value is inverted first.
    119119  /// </summary>
    120   [PushExpression(StackTypes.Boolean, "BOOLEAN.INVERT_FIRST_THEN_AND")]
     120  [PushExpression(StackTypes.Boolean, "BOOLEAN.INVERT_FIRST_THEN_AND", "Pushes the logical AND of the top two BOOLEANs, whereby the first value is inverted first.")]
    121121  [StorableClass]
    122122  public class BooleanInvertFirstThenAnd : StatelessExpression {
     
    141141  ///     Pushes the logical AND of the top two BOOLEANs, whereby the second value is inverted first.
    142142  /// </summary>
    143   [PushExpression(StackTypes.Boolean, "BOOLEAN.INVERT_SECOND_THEN_AND")]
     143  [PushExpression(StackTypes.Boolean, "BOOLEAN.INVERT_SECOND_THEN_AND", "Pushes the logical AND of the top two BOOLEANs, whereby the second value is inverted first.")]
    144144  [StorableClass]
    145145  public class BooleanInvertSecondThenAnd : StatelessExpression {
     
    165165  ///     Pushes the xor of the top tow BOOLEANs
    166166  /// </summary>
    167   [PushExpression(StackTypes.Boolean, "BOOLEAN.XOR")]
     167  [PushExpression(StackTypes.Boolean, "BOOLEAN.XOR", "Pushes the xor of the top tow BOOLEANs.")]
    168168  [StorableClass]
    169169  public class BooleanXorExpression : StatelessExpression {
Note: See TracChangeset for help on using the changeset viewer.