Changeset 15334 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Attributes/PushExpressionAttriubte.cs
- Timestamp:
- 08/21/17 11:33:53 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
- Property svn:ignore
-
old new 1 1 *.user 2 packages 3 TestResults
-
- Property svn:ignore
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Attributes/PushExpressionAttriubte.cs
r15273 r15334 20 20 /// Determines the amount of items fetched form the EXEC stack required for this expression. Used for mapping individuals. 21 21 /// </summary> 22 public readonly uint ExecIn;22 public readonly uint RequiredBlockCount; 23 23 24 24 /// <summary> … … 32 32 string description, 33 33 StackTypes additionalStackDependencies = default(StackTypes), 34 uint execIn= 0,34 uint requiredBlockCount = 0, 35 35 bool isHidden = false, 36 36 int inExpressionNr = -1) { … … 40 40 Name = name; 41 41 Description = description; 42 ExecIn = execIn;42 RequiredBlockCount = requiredBlockCount; 43 43 IsHidden = isHidden; 44 44 InExpressionNr = inExpressionNr > 0 ? inExpressionNr : default(int?);
Note: See TracChangeset
for help on using the changeset viewer.