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

    r15032 r15334  
    7272  }
    7373
     74  [StorableClass]
    7475  [PushExpression(
    7576    StackTypes.Float,
     
    8586  }
    8687
     88  [StorableClass]
    8789  [PushExpression(
    8890    StackTypes.Boolean,
    8991    "BOOLEAN.EMPTY",
    90     "Pushes TRUE onto the BOOLEAN stack if the BOOLEAN stack is empty, otherwise FALSE.",
    91     StackTypes.Boolean)]
     92    "Pushes TRUE onto the BOOLEAN stack if the BOOLEAN stack is empty, otherwise FALSE.")]
    9293  public class BooleanEmptyExpression : EmptyExpression<bool> {
    9394    public BooleanEmptyExpression() { }
     
    99100  }
    100101
     102  [StorableClass]
    101103  [PushExpression(
    102104    StackTypes.Char,
     
    113115  }
    114116
     117  [StorableClass]
    115118  [PushExpression(
    116119    StackTypes.String,
     
    127130  }
    128131
     132  [StorableClass]
    129133  [PushExpression(
    130134    StackTypes.IntegerVector,
     
    141145  }
    142146
     147  [StorableClass]
    143148  [PushExpression(
    144149    StackTypes.FloatVector,
     
    155160  }
    156161
     162  [StorableClass]
    157163  [PushExpression(
    158164    StackTypes.BooleanVector,
     
    169175  }
    170176
     177  [StorableClass]
    171178  [PushExpression(
    172179    StackTypes.StringVector,
Note: See TracChangeset for help on using the changeset viewer.