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

    r15017 r15032  
    2929
    3030  [StorableClass]
    31   [PushExpression(StackTypes.IntegerVector, "INTEGER[].CONJ", StackTypes.Integer)]
     31  [PushExpression(
     32    StackTypes.IntegerVector,
     33    "INTEGER[].CONJ",
     34    "Conj's the top INTEGER onto the top item of the INTEGER[] stack.",
     35    StackTypes.Integer)]
    3236  public class IntegerVectorConjExpression : VectorConjExpression<long> {
    3337    public IntegerVectorConjExpression() { }
     
    4549
    4650  [StorableClass]
    47   [PushExpression(StackTypes.FloatVector, "FLOAT[].CONJ", StackTypes.Float)]
     51  [PushExpression(
     52    StackTypes.FloatVector,
     53    "FLOAT[].CONJ",
     54    "Conj's the top FLOAT onto the top item of the FLOAT[] stack.",
     55    StackTypes.Float)]
    4856  public class FloatVectorConjExpression : VectorConjExpression<double> {
    4957    public FloatVectorConjExpression() { }
     
    6169
    6270  [StorableClass]
    63   [PushExpression(StackTypes.StringVector, "STRING[].CONJ", StackTypes.String)]
     71  [PushExpression(
     72    StackTypes.StringVector,
     73    "STRING[].CONJ",
     74    "Conj's the top STRING onto the top item of the STRING[] stack.",
     75    StackTypes.String)]
    6476  public class StringVectorConjExpression : VectorConjExpression<string> {
    6577    public StringVectorConjExpression() { }
     
    7789
    7890  [StorableClass]
    79   [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].CONJ", StackTypes.Boolean)]
     91  [PushExpression(
     92    StackTypes.BooleanVector,
     93    "BOOLEAN[].CONJ",
     94    "Conj's the top BOOLEAN onto the top item of the BOOLEAN[] stack.",
     95    StackTypes.Boolean)]
    8096  public class BooleanVectorConjExpression : VectorConjExpression<bool> {
    8197    public BooleanVectorConjExpression() { }
Note: See TracChangeset for help on using the changeset viewer.