Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorSetExpressions.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/VectorSetExpressions.cs
r15017 r15032 56 56 57 57 [StorableClass] 58 [PushExpression(StackTypes.IntegerVector, "INTEGER[].SET", StackTypes.Integer)] 58 [PushExpression( 59 StackTypes.IntegerVector, 60 "INTEGER[].SET", 61 "Replaces in the top INTEGER[] item at index (from INTEGER stack) with the first INTEGER item.", 62 StackTypes.Integer)] 59 63 public class IntegerVectorSetExpression : VectorSetExpression<long> { 60 64 public IntegerVectorSetExpression() { } … … 72 76 73 77 [StorableClass] 74 [PushExpression(StackTypes.FloatVector, "FLOAT[].SET", StackTypes.Float | StackTypes.Integer)] 78 [PushExpression( 79 StackTypes.FloatVector, 80 "FLOAT[].SET", 81 "Replaces in the top FLOAT[] item at index (from INTEGER stack) with the first FLOAT item.", 82 StackTypes.Float | StackTypes.Integer)] 75 83 public class FloatVectorSetExpression : VectorSetExpression<double> { 76 84 public FloatVectorSetExpression() { } … … 88 96 89 97 [StorableClass] 90 [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].SET", StackTypes.Boolean | StackTypes.Integer)] 98 [PushExpression( 99 StackTypes.BooleanVector, 100 "BOOLEAN[].SET", 101 "Replaces in the top BOOLEAN[] item at index (from INTEGER stack) with the first BOOLEAN item.", 102 StackTypes.Boolean | StackTypes.Integer)] 91 103 public class BooleanVectorSetExpression : VectorSetExpression<bool> { 92 104 public BooleanVectorSetExpression() { } … … 104 116 105 117 [StorableClass] 106 [PushExpression(StackTypes.StringVector, "STRING[].SET", StackTypes.String | StackTypes.Integer)] 118 [PushExpression( 119 StackTypes.StringVector, 120 "STRING[].SET", 121 "Replaces in the top STRING[] item at index (from INTEGER stack) with the first STRING item.", 122 StackTypes.String | StackTypes.Integer)] 107 123 public class StringVectorSetExpression : VectorSetExpression<string> { 108 124 public StringVectorSetExpression() { }
Note: See TracChangeset
for help on using the changeset viewer.