Changeset 15017 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Attributes
- Timestamp:
- 06/01/17 09:28:34 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Attributes/PushExpressionAttriubte.cs
r14952 r15017 10 10 public readonly string ExpressionName; 11 11 public readonly bool ManipulatesExec; 12 public readonly uint ExecIn; 12 13 13 public PushExpressionAttribute(StackTypes stackType, string expressionName, StackTypes additionalStackDependencies = default(StackTypes)) { 14 /// <summary> 15 /// Determines if the expression is visible to the user during the configuration phase for example. 16 /// </summary> 17 public readonly bool IsHidden; 18 19 public PushExpressionAttribute( 20 StackTypes stackType, 21 string expressionName, 22 StackTypes additionalStackDependencies = default(StackTypes), 23 uint execIn = 0, 24 bool isHidden = false) { 14 25 StackType = stackType; 15 26 AdditionalStackDependencies = additionalStackDependencies; 16 27 ExpressionName = expressionName; 28 ExecIn = execIn; 29 IsHidden = isHidden; 17 30 ManipulatesExec = stackType == StackTypes.Exec || AdditionalStackDependencies.HasFlag(StackTypes.Exec); 18 31 }
Note: See TracChangeset
for help on using the changeset viewer.