Changeset 14834 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack
- Timestamp:
- 04/10/17 00:27:31 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack
- Files:
-
- 2 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/PushStack.cs
r14777 r14834 17 17 /// </summary> 18 18 /// <typeparam name="T">The item type of the collection.</typeparam> 19 public class PushStack<T> : I Stack<T> {19 public class PushStack<T> : IPushStack<T> { 20 20 private const string Delimiter = " "; 21 21 -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/StackTypes.cs
r14777 r14834 13 13 Code = 0x80, 14 14 Exec = 0x100, 15 IntegerVector = 0x200, 16 FloatVector = 0x400, 17 BooleanVector = 0x800, 18 StringVector = 0x1000 15 19 } 16 20 }
Note: See TracChangeset
for help on using the changeset viewer.