Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorButLastExpressions.cs
- Timestamp:
- 06/12/17 14:11:43 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorButLastExpressions.cs
r15017 r15032 30 30 31 31 [StorableClass] 32 [PushExpression(StackTypes.IntegerVector, "INTEGER[].BUTLAST")] 32 [PushExpression( 33 StackTypes.IntegerVector, 34 "INTEGER[].BUTLAST", 35 "Takes the rest of the top item on the INTEGER[] stack.")] 33 36 public class IntegerVectorButLastExpression : VectorButLastExpression<long> { 34 37 public IntegerVectorButLastExpression() { } … … 46 49 47 50 [StorableClass] 48 [PushExpression(StackTypes.FloatVector, "FLOAT[].BUTLAST")] 51 [PushExpression( 52 StackTypes.FloatVector, 53 "FLOAT[].BUTLAST", 54 "Takes the rest of the top item on the FLOAT[] stack.")] 49 55 public class FloatVectorButLastExpression : VectorButLastExpression<double> { 50 56 public FloatVectorButLastExpression() { } … … 62 68 63 69 [StorableClass] 64 [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].BUTLAST")] 70 [PushExpression( 71 StackTypes.BooleanVector, 72 "BOOLEAN[].BUTLAST", 73 "Takes the rest of the top item on the BOOLEAN[] stack.")] 65 74 public class BooleanVectorButLastExpression : VectorButLastExpression<bool> { 66 75 public BooleanVectorButLastExpression() { } … … 78 87 79 88 [StorableClass] 80 [PushExpression(StackTypes.StringVector, "STRING[].BUTLAST")] 89 [PushExpression( 90 StackTypes.StringVector, 91 "STRING[].BUTLAST", 92 "Takes the rest of the top item on the STRING[] stack.")] 81 93 public class StringVectorButLastExpression : VectorButLastExpression<string> { 82 94 public StringVectorButLastExpression() { }
Note: See TracChangeset
for help on using the changeset viewer.