Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorConcatExpressions.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/VectorConcatExpressions.cs
r15017 r15032 8 8 9 9 /// <summary> 10 /// Concat s two vectors on the type stack.10 /// Concatinates two vectors on the type stack. 11 11 /// </summary> 12 12 [StorableClass] … … 33 33 34 34 [StorableClass] 35 [PushExpression(StackTypes.IntegerVector, "INTEGER[].CONCAT")] 35 [PushExpression( 36 StackTypes.IntegerVector, 37 "INTEGER[].CONCAT", 38 "Concatenates the top two vectors on the INTEGER[] stack.")] 36 39 public class IntegerVectorConcatExpression : VectorConcatExpression<long> { 37 40 public IntegerVectorConcatExpression() { } … … 49 52 50 53 [StorableClass] 51 [PushExpression(StackTypes.FloatVector, "FLOAT[].CONCAT")] 54 [PushExpression( 55 StackTypes.FloatVector, 56 "FLOAT[].CONCAT", 57 "Concatenates the top two vectors on the FLOAT[] stack.")] 52 58 public class FloatVectorConcatExpression : VectorConcatExpression<double> { 53 59 public FloatVectorConcatExpression() { } … … 65 71 66 72 [StorableClass] 67 [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].CONCAT")] 73 [PushExpression( 74 StackTypes.BooleanVector, 75 "BOOLEAN[].CONCAT", 76 "Concatenates the top two vectors on the BOOLEAN[] stack.")] 68 77 public class BooleanVectorConcatExpression : VectorConcatExpression<bool> { 69 78 public BooleanVectorConcatExpression() { } … … 81 90 82 91 [StorableClass] 83 [PushExpression(StackTypes.StringVector, "STRING[].CONCAT")] 92 [PushExpression( 93 StackTypes.StringVector, 94 "STRING[].CONCAT", 95 "Concatenates the top two vectors on the STRING[] stack.")] 84 96 public class StringVectorConcatExpression : VectorConcatExpression<string> { 85 97 public StringVectorConcatExpression() { }
Note: See TracChangeset
for help on using the changeset viewer.