Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/PushExpressions.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/PushExpressions.cs
r15017 r15032 49 49 [StorableClass] 50 50 [Serializable] 51 [PushExpression(StackTypes.Integer, "INTEGER.PUSH", isHidden: true)]51 [PushExpression(StackTypes.Integer, "INTEGER.PUSH", "Pushes a specific integer onto the INTEGER stack", isHidden: true)] 52 52 public class IntegerPushExpression : PushExpression<long> { 53 53 [StorableConstructor] … … 78 78 [StorableClass] 79 79 [Serializable] 80 [PushExpression(StackTypes.Float, "FLOAT.PUSH", isHidden: true)]80 [PushExpression(StackTypes.Float, "FLOAT.PUSH", "Pushes a specific float onto the FLOAT stack", isHidden: true)] 81 81 public class FloatPushExpression : PushExpression<double> { 82 82 [StorableConstructor] … … 107 107 [StorableClass] 108 108 [Serializable] 109 [PushExpression(StackTypes.Boolean, "BOOLEAN.PUSH", isHidden: true)]109 [PushExpression(StackTypes.Boolean, "BOOLEAN.PUSH", "Pushes a specific boolean onto the BOOLEAN stack", isHidden: true)] 110 110 public class BooleanPushExpression : PushExpression<bool> { 111 111 [StorableConstructor] … … 136 136 [StorableClass] 137 137 [Serializable] 138 [PushExpression(StackTypes.Name, "NAME.PUSH", isHidden: true)]138 [PushExpression(StackTypes.Name, "NAME.PUSH", "Pushes a specific name onto the NAME stack", isHidden: true)] 139 139 public class NamePushExpression : PushExpression<string> { 140 140 [StorableConstructor] … … 161 161 [StorableClass] 162 162 [Serializable] 163 [PushExpression(StackTypes.Exec, "EXEC.PUSH", isHidden: true)]163 [PushExpression(StackTypes.Exec, "EXEC.PUSH", "Pushes a specific expression onto the EXEC stack", isHidden: true)] 164 164 public class ExecPushExpression : PushExpression<Expression> { 165 165 [StorableConstructor] … … 191 191 [StorableClass] 192 192 [Serializable] 193 [PushExpression(StackTypes.Char, "CHAR.PUSH", isHidden: true)]193 [PushExpression(StackTypes.Char, "CHAR.PUSH", "Pushes a specific char onto the CHAR stack", isHidden: true)] 194 194 public class CharPushExpression : PushExpression<char> { 195 195 [StorableConstructor] … … 225 225 [StorableClass] 226 226 [Serializable] 227 [PushExpression(StackTypes.String, "STRING.PUSH", isHidden: true)]227 [PushExpression(StackTypes.String, "STRING.PUSH", "Pushes a specific string onto the STRING stack", isHidden: true)] 228 228 public class StringPushExpression : PushExpression<string> { 229 229 [StorableConstructor] … … 258 258 [StorableClass] 259 259 [Serializable] 260 [PushExpression(StackTypes.IntegerVector, "INTEGER[].PUSH", isHidden: true)]260 [PushExpression(StackTypes.IntegerVector, "INTEGER[].PUSH", "Pushes a specific integer vector onto the INTEGER[] stack", isHidden: true)] 261 261 public class IntegerVectorPushExpression : VectorPushExpression<long> { 262 262 [StorableConstructor] … … 289 289 [StorableClass] 290 290 [Serializable] 291 [PushExpression(StackTypes.FloatVector, "FLOAT[].PUSH", isHidden: true)]291 [PushExpression(StackTypes.FloatVector, "FLOAT[].PUSH", "Pushes a specific float vector onto the FLOAT[] stack", isHidden: true)] 292 292 public class FloatVectorPushExpression : VectorPushExpression<double> { 293 293 [StorableConstructor] … … 319 319 [StorableClass] 320 320 [Serializable] 321 [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].PUSH", isHidden: true)]321 [PushExpression(StackTypes.BooleanVector, "BOOLEAN[].PUSH", "Pushes a specific boolean vector onto the BOOLEAN[] stack", isHidden: true)] 322 322 public class BooleanVectorPushExpression : VectorPushExpression<bool> { 323 323 [StorableConstructor] … … 349 349 [StorableClass] 350 350 [Serializable] 351 [PushExpression(StackTypes.StringVector, "STRING[].PUSH", isHidden: true)]351 [PushExpression(StackTypes.StringVector, "STRING[].PUSH", "Pushes a specific string vector onto the STRING[] stack", isHidden: true)] 352 352 public class StringVectorPushExpression : VectorPushExpression<string> { 353 353 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.